Sha256: cd19086a42f04f9144cdee3a574bfe8d9502ba688a6a740cbfbe83c085c01031
Contents?: true
Size: 876 Bytes
Versions: 16
Compression:
Stored size: 876 Bytes
Contents
# Sets up the Rails environment for Cucumber ENV["RAILS_ENV"] ||= "cucumber" require File.expand_path(File.dirname(__FILE__) + '/../../config/environment') require 'cucumber/rails/world' # Comment out the next line if you don't want Cucumber Unicode support require 'cucumber/formatter/unicode' # Comment out the next line if you don't want transactions to # open/roll back around each scenario Cucumber::Rails.use_transactional_fixtures # Comment out the next line if you want Rails' own error handling # (e.g. rescue_action_in_public / rescue_responses / rescue_from) Cucumber::Rails.bypass_rescue require 'webrat' require 'cucumber/webrat/table_locator' # Lets you do table.diff!(table_at('#my_table').to_a) Webrat.configure do |config| config.mode = :rails end <% if framework == :rspec -%> require 'cucumber/rails/rspec' require 'webrat/core/matchers' <% end -%>
Version data entries
16 entries across 16 versions & 4 rubygems