2018-11-03 02:07:56 +03:00
|
|
|
# spec/bundler
|
|
|
|
|
2022-03-21 19:40:13 +03:00
|
|
|
spec/bundler is rspec examples for bundler library (`lib/bundler.rb`, `lib/bundler/*`).
|
2018-11-03 02:07:56 +03:00
|
|
|
|
|
|
|
## Running spec/bundler
|
|
|
|
|
|
|
|
To run rspec for bundler:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2018-11-03 02:07:56 +03:00
|
|
|
```bash
|
|
|
|
make test-bundler
|
|
|
|
```
|
|
|
|
|
2022-09-02 09:25:46 +03:00
|
|
|
or run rspec with parallel execution:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make test-bundler-parallel
|
|
|
|
```
|
|
|
|
|
|
|
|
If you specify `BUNDLER_SPECS=foo/bar_spec.rb` then only `spec/bundler/foo/bar_spec.rb` will be run.
|
|
|
|
|
2017-09-20 23:19:54 +03:00
|
|
|
# spec/ruby
|
2017-05-07 15:01:12 +03:00
|
|
|
|
|
|
|
ruby/spec (https://github.com/ruby/spec/) is
|
|
|
|
a test suite for the Ruby language.
|
|
|
|
|
2017-09-20 23:19:54 +03:00
|
|
|
Once a month, @eregon merges the in-tree copy under spec/ruby
|
2017-05-07 15:01:12 +03:00
|
|
|
with the upstream repository, preserving the commits and history.
|
|
|
|
The same happens for other implementations such as JRuby and TruffleRuby.
|
|
|
|
|
2017-09-20 23:19:54 +03:00
|
|
|
Feel welcome to modify the in-tree spec/ruby.
|
2017-05-07 15:01:12 +03:00
|
|
|
This is the purpose of the in-tree copy,
|
|
|
|
to facilitate contributions to ruby/spec for MRI developers.
|
|
|
|
|
|
|
|
New features, additional tests for existing features and
|
|
|
|
regressions tests are all welcome in ruby/spec.
|
|
|
|
There is very little behavior that is implementation-specific,
|
|
|
|
as in the end user programs tend to rely on every behavior MRI exhibits.
|
|
|
|
In other words: If adding a spec might reveal a bug in
|
|
|
|
another implementation, then it is worth adding it.
|
|
|
|
Currently, the only module which is MRI-specific is `RubyVM`.
|
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
## Changing behavior and versions guards
|
|
|
|
|
2018-08-17 13:14:01 +03:00
|
|
|
Version guards (`ruby_version_is`) must be added for new features or features
|
2019-06-27 13:06:39 +03:00
|
|
|
which change behavior or are removed. This is necessary for other Ruby implementations
|
|
|
|
to still be able to run the specs and contribute new specs.
|
|
|
|
|
|
|
|
For example, change:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
```ruby
|
|
|
|
describe "Some spec" do
|
|
|
|
it "some example" do
|
|
|
|
# Old behavior for Ruby < 2.7
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
to:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
```ruby
|
|
|
|
describe "Some spec" do
|
|
|
|
ruby_version_is ""..."2.7" do
|
|
|
|
it "some example" do
|
|
|
|
# Old behavior for Ruby < 2.7
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ruby_version_is "2.7" do
|
|
|
|
it "some example" do
|
|
|
|
# New behavior for Ruby >= 2.7
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
See `spec/ruby/CONTRIBUTING.md` for more documentation about guards.
|
2018-08-17 13:14:01 +03:00
|
|
|
|
2018-08-17 14:22:55 +03:00
|
|
|
To verify specs are compatible with older Ruby versions:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
|
|
|
```bash
|
2018-08-17 14:22:55 +03:00
|
|
|
cd spec/ruby
|
2020-01-28 20:12:24 +03:00
|
|
|
$RUBY_MANAGER use 2.4.9
|
2018-08-17 14:22:55 +03:00
|
|
|
../mspec/bin/mspec -j
|
|
|
|
```
|
|
|
|
|
2017-11-05 18:10:41 +03:00
|
|
|
## Running ruby/spec
|
2017-05-07 15:01:12 +03:00
|
|
|
|
|
|
|
To run all specs:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2017-05-07 15:01:12 +03:00
|
|
|
```bash
|
2017-09-20 23:19:54 +03:00
|
|
|
make test-spec
|
2017-05-07 15:01:12 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Extra arguments can be added via `MSPECOPT`.
|
|
|
|
For instance, to show the help:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2017-05-07 15:01:12 +03:00
|
|
|
```bash
|
2017-09-20 23:19:54 +03:00
|
|
|
make test-spec MSPECOPT=-h
|
2017-05-07 15:01:12 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
You can also run the specs in parallel, which is currently experimental.
|
|
|
|
It takes around 10s instead of 60s on a quad-core laptop.
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2017-05-07 15:01:12 +03:00
|
|
|
```bash
|
2017-09-20 23:19:54 +03:00
|
|
|
make test-spec MSPECOPT=-j
|
2017-05-07 15:01:12 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
To run a specific test, add its path to the command:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2017-05-07 15:01:12 +03:00
|
|
|
```bash
|
2017-09-20 23:19:54 +03:00
|
|
|
make test-spec MSPECOPT=spec/ruby/language/for_spec.rb
|
2017-05-07 15:01:12 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
If ruby trunk is your current `ruby` in `$PATH`, you can also run `mspec` directly:
|
2022-04-18 07:53:43 +03:00
|
|
|
|
2017-05-07 15:01:12 +03:00
|
|
|
```bash
|
|
|
|
# change ruby to trunk
|
|
|
|
ruby -v # => trunk
|
2017-09-20 23:19:54 +03:00
|
|
|
spec/mspec/bin/mspec spec/ruby/language/for_spec.rb
|
2017-05-07 15:01:12 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## ruby/spec and test/
|
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
The main difference between a "spec" under `spec/ruby/` and
|
|
|
|
a test under `test/` is that specs are documenting what they test.
|
2017-05-07 15:01:12 +03:00
|
|
|
This is extremely valuable when reading these tests, as it
|
|
|
|
helps to quickly understand what specific behavior is tested,
|
|
|
|
and how a method should behave. Basic English is fine for spec descriptions.
|
|
|
|
Specs also tend to have few expectations (assertions) per spec,
|
|
|
|
as they specify one aspect of the behavior and not everything at once.
|
|
|
|
Beyond that, the syntax is slightly different but it does the same thing:
|
|
|
|
`assert_equal 3, 1+2` is just `(1+2).should == 3`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
describe "The for expression" do
|
|
|
|
it "iterates over an Enumerable passing each element to the block" do
|
|
|
|
j = 0
|
|
|
|
for i in 1..3
|
|
|
|
j += i
|
|
|
|
end
|
|
|
|
j.should == 6
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2019-06-27 13:06:39 +03:00
|
|
|
For more details, see `spec/ruby/CONTRIBUTING.md`.
|
2022-09-02 09:30:46 +03:00
|
|
|
|
|
|
|
# spec/syntax_suggest
|
|
|
|
|
|
|
|
## Running spec/syntax_suggest
|
|
|
|
|
|
|
|
To run rspec for syntax_suggest:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make test-syntax-suggest
|
|
|
|
```
|
|
|
|
|
2022-09-02 09:57:18 +03:00
|
|
|
If you specify `SYNTAX_SUGGEST_SPECS=foo/bar_spec.rb` then only `spec/syntax_suggest/foo/bar_spec.rb` will be run.
|