Sha256: 4aac63a11c95f7c11172138b2d5ca58067b1aee18350fa2c5d87ad64a128df56

Contents?: true

Size: 456 Bytes

Versions: 5

Compression:

Stored size: 456 Bytes

Contents

require 'rubygems'
require 'bundler/setup'

require 'combustion'

Combustion.initialize! :active_record, :action_controller,
                       :action_view

require 'rspec/rails'

Dir.glob('./spec/support/**/*.rb') do |file|
  require file
end

Dir.glob('./spec/fixtures/**/*.rb') do |file|
  require file
end

RSpec.configure do |config|
  config.use_transactional_fixtures = true

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arrthorizer-0.3.2 spec/spec_helper.rb
arrthorizer-0.3.1 spec/spec_helper.rb
arrthorizer-0.3.0 spec/spec_helper.rb
arrthorizer-0.2.1 spec/spec_helper.rb
arrthorizer-0.2.0 spec/spec_helper.rb