Sha256: 553e5bd354839af6777ffbf1a44371e358af4497d4fd4df702408c4755d324ed
Contents?: true
Size: 568 Bytes
Versions: 9
Compression:
Stored size: 568 Bytes
Contents
ENV["RAILS_ENV"] = "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require 'rspec/rails' require 'rspec/autorun' require 'pry-debugger' PROSPERITY_ROOT = File.expand_path("..", __FILE__) Dir[File.join(PROSPERITY_ROOT, "support/**/*.rb")].each {|f| require f } TEST_FILES = File.join(PROSPERITY_ROOT, "test_files") RSpec.configure do |config| config.render_views config.treat_symbols_as_metadata_keys_with_true_values = true config.run_all_when_everything_filtered = true config.filter_run :focus config.order = 'random' end
Version data entries
9 entries across 9 versions & 1 rubygems