Last active
August 29, 2015 13:58
-
-
Save pithyless/10019170 to your computer and use it in GitHub Desktop.
Every time I'm copy+pasting some spec_helper.rb basics.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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