Sha256: afc19d0941292cb62c88f7f4faf8e0833e6aef8f57cd2ea7ab837e100b3ef030
Contents?: true
Size: 792 Bytes
Versions: 2
Compression:
Stored size: 792 Bytes
Contents
# See http://wiki.github.com/aslakhellesoy/cucumber/sinatra # for more details about Sinatra with Cucumber gem 'rack-test', '>=0.3.0' gem 'aslakhellesoy-webrat', '=0.4.4.1' gem 'sinatra', '=0.9.4' # Sinatra app_file = File.join(File.dirname(__FILE__), *%w[.. .. app.rb]) require app_file # Force the application name because polyglot breaks the auto-detection logic. Sinatra::Application.app_file = app_file require 'spec/expectations' require 'rack/test' require 'webrat' #set :environment, :test Webrat.configure do |config| config.mode = :rack end class MyWorld include Rack::Test::Methods include Webrat::Methods include Webrat::Matchers Webrat::Methods.delegate_to_session :response_code, :response_body def app Sinatra::Application end end World{MyWorld.new}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sshingler-jkl-0.0.5 | features/support/env.rb |
sshingler-jkl-0.0.6 | features/support/env.rb |