Skip to content

Instantly share code, notes, and snippets.

@pithyless
Last active August 29, 2015 13:58
Show Gist options
  • Save pithyless/10019170 to your computer and use it in GitHub Desktop.
Save pithyless/10019170 to your computer and use it in GitHub Desktop.
Every time I'm copy+pasting some spec_helper.rb basics.
RSpec.configure do |config|
config.treat_symbols_as_metadata_keys_with_true_values = true
config.order = "random"
config.fail_fast = true
config.filter_run :focus
config.filter_run_including :focused => true
config.run_all_when_everything_filtered = true
config.alias_example_to :fit, :focused => true
config.expect_with :rspec do |c|
c.syntax = :expect # [:should, :expect]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment