Sha256: ce2787bfb00c7aa279346e15ce3a3b9118ed2afc92552dfcefbe39eee678d5b8

Contents?: true

Size: 643 Bytes

Versions: 2

Compression:

Stored size: 643 Bytes

Contents

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new [
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start

require 'railsstrap'

Dir['./spec/shared/**/*.rb'].each {|f| require f}
require './spec/support/matchers.rb'
require './spec/support/padrino.rb' unless ENV['ONLY_RAILS']
require './spec/support/rails.rb'

RSpec.configure do |config|
  config.order = 'random'
  config.run_all_when_everything_filtered = false
  config.alias_it_should_behave_like_to :all_tests_pass_for, ''
  config.alias_it_should_behave_like_to :all_tests_pass_with, 'with'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
railsstrap-4.0.0.beta3 spec/spec_helper.rb
railsstrap-4.0.0.beta2 spec/spec_helper.rb