Sha256: 0c107d092ee5b7570cc300bf038404e9ed643140c9f489b684c5a162927676c0
Contents?: true
Size: 749 Bytes
Versions: 12
Compression:
Stored size: 749 Bytes
Contents
#-- # Copyright (c) 2006-2012 Nick Sieger <nicksieger@gmail.com> # See the file LICENSE.txt included with the distribution for # software license details. #++ begin require 'rspec/expectations' rescue LoadError require 'spec/expectations' end Given /^that I am a conscientious developer$/ do end Given /^I write cucumber features$/ do end Then /^I should see a green bar$/ do end Given /^that I am a lazy hacker$/ do end Given /^I don't bother writing cucumber features$/ do false.should be_true end Then /^I should be fired$/ do end Given /^that I can't code for peanuts$/ do end Given /^I write step definitions that throw exceptions$/ do raise RuntimeError, "User error!" end Then /^I shouldn't be allowed out in public$/ do end
Version data entries
12 entries across 12 versions & 1 rubygems