Sha256: 5916b86e9a16c8c4159d146c4e34d2ae1685d6b783d1df701d34f2b4e89ff525

Contents?: true

Size: 1.13 KB

Versions: 12

Compression:

Stored size: 1.13 KB

Contents

The `rspec` command comes with several options you can use to customize RSpec's
behavior, including output formats, filtering examples, etc.

For a full list of options, run the `rspec` command with the `--help` flag:

```ruby
$ rspec --help
```

### Run with `ruby`

Generally, life is simpler if you just use the `rspec` command. If you must use
the `ruby` command, however, you'll need to require `rspec/autorun`. You can
either pass a `-rrspec/autorun` CLI option when invoking `ruby`, or add a
`require 'rspec/autorun'` to one or more of your spec files.

It is conventional to put configuration in and require assorted support files
from `spec/spec_helper.rb`. It is also conventional to require that file from
the spec files using `require 'spec_helper'`. This works because RSpec
implicitly adds the `spec` directory to the `LOAD_PATH`. It also adds `lib`, so
your implementation files will be on the `LOAD_PATH` as well.

If you're using the `ruby` command, you'll need to do this yourself (with the
`-I` option). Putting these together, your command might be something like this:

```ruby
$ ruby -Ilib -Ispec -rrspec/autorun path/to/spec.rb
```

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
opal-rspec-1.1.0.alpha3 rspec-core/upstream/features/command_line/README.md
opal-rspec-1.1.0.alpha2 rspec-core/upstream/features/command_line/README.md
opal-rspec-1.1.0.alpha1 rspec-core/upstream/features/command_line/README.md
opal-rspec-1.0.0 rspec-core/upstream/features/command_line/README.md
opal-rspec-1.0.0.alpha1 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.8.0 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.8.0.alpha3 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.8.0.alpha2 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.8.0.alpha1 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.7.1 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.7.0 rspec-core/upstream/features/command_line/README.md
opal-rspec-0.7.0.rc.2 rspec-core/upstream/features/command_line/README.md