Sha256: 3e285848893a70d3a3b9d21cf3c29412947e9624565b686f3e24d2104f92c056

Contents?: true

Size: 746 Bytes

Versions: 1

Compression:

Stored size: 746 Bytes

Contents

ENV["RAILS_ENV"] ||= "test"
require File.expand_path("../rails_app/config/environment.rb",  __FILE__)

require 'rspec/rails'
require 'timecop'

# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  config.use_transactional_examples = true

  config.include Capybara::DSL

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'

  config.after(:each) { Timecop.return }
end

Dir["#{Dir.pwd}/spec/support/**/*.rb"].each {|f| require f}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
two_factor_authentication-1.1.4 spec/spec_helper.rb