Sha256: 421a3fad84b04716de5850d2d1d063bec4dde043f02cb5c2773022b16a31aad8

Contents?: true

Size: 554 Bytes

Versions: 11

Compression:

Stored size: 554 Bytes

Contents

ENV["RAILS_ENV"] ||= 'test'

require 'simplecov'
require 'simplecov-rcov-text'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
  SimpleCov::Formatter::HTMLFormatter,
  SimpleCov::Formatter::RcovTextFormatter,
])

SimpleCov.start do
  add_filter "spec/dummy"
  add_filter "spec/support"
  add_filter "spec/plasticine_spec.rb"
end

require File.expand_path("../dummy/config/environment", __FILE__)

require 'rspec/rails'

Dir["./spec/support/**/*.rb"].sort.each {|f| require f }

RSpec.configure do |config|
  config.mock_with :rspec
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
plasticine-1.2.8 spec/spec_helper.rb
plasticine-1.2.7 spec/spec_helper.rb
plasticine-1.2.6 spec/spec_helper.rb
plasticine-1.2.5 spec/spec_helper.rb
plasticine-1.2.4 spec/spec_helper.rb
plasticine-1.2.3 spec/spec_helper.rb
plasticine-1.2.2 spec/spec_helper.rb
plasticine-1.2.1 spec/spec_helper.rb
plasticine-1.2.0 spec/spec_helper.rb
plasticine-1.1.1 spec/spec_helper.rb
plasticine-1.1.0 spec/spec_helper.rb