Examples (6)
Initialize an `.rspec` configuration and a spec helper file
rspec --initRun all tests
Run a specific directory of tests
rspec path/to/directoryRun one or more test files
rspec path/to/file1 path/to/file2 ...Run a specific test in a file (e.g. the test starts on line 83)
rspec path/to/file:83Run specs with a specific seed
rspec --seed seed_numbermade by @shridhargupta | data from tldr-pages