diff options
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9679952df..9fdca585e 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -64,11 +64,11 @@ RSpec.configure do |config|    Capybara.javascript_driver = :poltergeist    # :meta tests can be run seperately in case of doubt about the tests themselves    # they serve mainly as an explanataion of complicated tests (as e.g. PG information_schema introspection) -  config.filter_run_excluding :meta => true -  config.filter_run_excluding :js   => true -  config.filter_run           :wip  => true +  config.filter_run_excluding meta: true +  config.filter_run_excluding truncation: true +  config.filter_run           wip: true    config.run_all_when_everything_filtered = true -  config.include TokenInputHelper, :type => :feature +  config.include TokenInputHelper, type: :feature    # ## Mock Framework    # @@ -93,7 +93,7 @@ RSpec.configure do |config|    # You can disable this behaviour by removing the line below, and instead    # explicitly tag your specs with their type, e.g.:    # -  #     RSpec.describe UsersController, :type => :controller do +  #     RSpec.describe UsersController, type: :controller do    #       # ...    #     end    # | 
