Sha256: 9fa7f0c2f6d3e6e6fca78a4d9a4bb0ef829ab72b10bd588a964ffeb240aa69f0
Contents?: true
Size: 659 Bytes
Versions: 3
Compression:
Stored size: 659 Bytes
Contents
Given /^I am using (ActiveRecord|DataMapper|MongoMapper|Mongoid|CouchPotato)$/ do |orm| @orm = orm end Given /^the (.+) cleaning strategy$/ do |strategy| @strategy = strategy end When "I run my scenarios that rely on a clean database" do full_dir ||= File.expand_path(File.dirname(__FILE__) + "/../../examples/") Dir.chdir(full_dir) do ENV['ORM'] = @orm.downcase ENV['STRATEGY'] = @strategy @out = `#{"jruby -S " if defined?(JRUBY_VERSION)}cucumber features` @status = $?.exitstatus end end Then "I should see all green" do unless @status == 0 raise "Expected to see all green but we saw FAIL! Output:\n#{@out}" end end
Version data entries
3 entries across 3 versions & 2 rubygems