Sha256: 6665b6ba0c645b662780ae32117da3b2dc05cbaa9d369d4b33ef2db91dea740f

Contents?: true

Size: 817 Bytes

Versions: 11

Compression:

Stored size: 817 Bytes

Contents

require 'rubygems'
require 'bundler'
Bundler.setup :default, :development, :test

require 'simplecov'
SimpleCov.start do
  add_filter '/spec/'
end

require 'capybara/rspec'
require 'rack_session_access'
require 'rack_session_access/capybara'
require 'webmock/rspec'
require 'awesome_print'
require 'rack/test'
require 'omniauth-dice'

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.include Rack::Test::Methods
  config.filter_run :focus
  config.filter_run_excluding :skip

  config.include Rack::Test::Methods
  config.extend  OmniAuth::Test::StrategyMacros, :type => :strategy
end

# Load test app, stolen / customized from:
# https://github.com/railsware/rack_session_access/tree/master/apps
Dir[File.expand_path('spec/test_apps/*.rb'), __FILE__].each do |f|
  require f
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
omniauth-dice-0.2.1 spec/spec_helper.rb
omniauth-dice-0.2.0 spec/spec_helper.rb
omniauth-dice-0.1.9 spec/spec_helper.rb
omniauth-dice-0.1.8 spec/spec_helper.rb
omniauth-dice-0.1.7 spec/spec_helper.rb
omniauth-dice-0.1.6 spec/spec_helper.rb
omniauth-dice-0.1.5 spec/spec_helper.rb
omniauth-dice-0.1.4 spec/spec_helper.rb
omniauth-dice-0.1.3 spec/spec_helper.rb
omniauth-dice-0.1.2 spec/spec_helper.rb
omniauth-dice-0.1.1 spec/spec_helper.rb