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

Version Path
prosperity-0.0.10 spec/spec_helper.rb
prosperity-0.0.9 spec/spec_helper.rb
prosperity-0.0.8 spec/spec_helper.rb
prosperity-0.0.7 spec/spec_helper.rb
prosperity-0.0.6 spec/spec_helper.rb
prosperity-0.0.5 spec/spec_helper.rb
prosperity-0.0.4 spec/spec_helper.rb
prosperity-0.0.3 spec/spec_helper.rb
prosperity-0.0.2 spec/spec_helper.rb