Sha256: c9983552e1780e6c4c1dc7f4c70426351a3ceb700a530bac6aedb8a4a06c4f93

Contents?: true

Size: 536 Bytes

Versions: 17

Compression:

Stored size: 536 Bytes

Contents

Bundler.require(:default, :runtime, :test)

require File.join(File.dirname(__FILE__), '..', 'lib', 'warden-github')
require File.join(File.dirname(__FILE__), 'app')
require 'rack/test'
require 'webrat'
require 'addressable/uri'
require 'pp'

Webrat.configure do |config|
  config.mode = :rack
  config.application_port = 4567
end

RSpec.configure do |config|
  config.include(Rack::Test::Methods)
  config.include(Webrat::Methods)
  config.include(Webrat::Matchers)

  config.before(:each) do
  end

  def app
    Example.app
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
warden-github-0.12.1 spec/spec_helper.rb
warden-github-0.12.0 spec/spec_helper.rb
warden-github-0.11.0 spec/spec_helper.rb
warden-github-0.10.2 spec/spec_helper.rb
warden-github-0.10.1 spec/spec_helper.rb
warden-github-0.10.0 spec/spec_helper.rb
warden-github-0.9.1 spec/spec_helper.rb
warden-github-0.9.0 spec/spec_helper.rb
warden-github-0.8.2 spec/spec_helper.rb
warden-github-0.8.1 spec/spec_helper.rb
warden-github-0.8.0 spec/spec_helper.rb
warden-github-0.7.0 spec/spec_helper.rb
warden-github-0.6.1 spec/spec_helper.rb
warden-github-0.6.0 spec/spec_helper.rb
warden-github-0.5.1 spec/spec_helper.rb
warden-github-0.5.0 spec/spec_helper.rb
warden-github-0.4.4 spec/spec_helper.rb