Sha256: 72991a44c1185d00d57747bf543a4370cd33cec745d94f03d80970b072105ed8
Contents?: true
Size: 701 Bytes
Versions: 99
Compression:
Stored size: 701 Bytes
Contents
ENV["RAILS_ENV"] = "test" require File.expand_path("../test_app/config/environment.rb", __FILE__) require 'rspec/rails' ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../') # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support/ and its subdirectories. Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f } RSpec.configure do |config| config.use_transactional_fixtures = true # Use color not only in STDOUT but also in pagers and files config.tty = true # Use the specified formatter config.formatter = :documentation # :progress, :html, :textmate config.before(:each) do end config.after(:each) do end end
Version data entries
99 entries across 99 versions & 1 rubygems