Sha256: 2ccf8b2059b4ebfb5331a24b7be596dc46c07e00aa372446f6180312fc05931e
Contents?: true
Size: 625 Bytes
Versions: 2
Compression:
Stored size: 625 Bytes
Contents
require "simplecov" SimpleCov.start do add_filter "/spec\/fixtures/" add_filter "/spec\/dummy/" end require "nyanko" Nyanko::Config.units_directory_path = File.expand_path("../fixtures/units", __FILE__) ENV["RAILS_ENV"] ||= "test" require File.expand_path("../dummy/config/environment", __FILE__) require "rspec/rails" require "rspec/autorun" RSpec.configure do |config| config.use_transactional_fixtures = true config.infer_base_class_for_anonymous_controllers = false config.treat_symbols_as_metadata_keys_with_true_values = true config.run_all_when_everything_filtered = true config.filter_run :focus end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nyanko-0.0.3 | spec/spec_helper.rb |
nyanko-0.0.1 | spec/spec_helper.rb |