Sha256: e81ecf45388917741ae483e4562348c29ff3a85ad7d0cefd9ed3c0dcea79b733

Contents?: true

Size: 404 Bytes

Versions: 5

Compression:

Stored size: 404 Bytes

Contents

# Configure Rails envinronment
ENV["RAILS_ENV"] = "test"

require "rails/all"
require "rspec/rails"
require "mini_auth"

# Pull in the fake rails app
require 'fake_app'

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

# Configure RSpec
RSpec.configure do |config|
  require 'rspec/expectations'
  config.include RSpec::Matchers
  config.mock_with :rspec
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mini_auth-0.2.0 spec/spec_helper.rb
mini_auth-0.2.0.beta spec/spec_helper.rb
mini_auth-0.1.0 spec/spec_helper.rb
mini_auth-0.1.0.pre2 spec/spec_helper.rb
mini_auth-0.1.0.pre spec/spec_helper.rb