acceptance/cucumber/step_definitions/development_steps.rb
#--
# 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