You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2018. It is now read-only.
Just make sure you have a features/support/env.rb file with the following:
# RSpec matchers
require 'spec/expectations'
# NOTE: This must come before the require 'webrat', otherwise sinatra will look in the wrong place for it's views.
require File.dirname(__FILE__) + '/../../your_sinatra_app'
# Webrat
require 'webrat'
Webrat.configure do |config|
config.mode = :sinatra
end
World do
Webrat::SinatraSession.new
end