Skip to content

Instantly share code, notes, and snippets.

@msassak
Created April 20, 2010 18:29
Show Gist options
  • Select an option

  • Save msassak/372868 to your computer and use it in GitHub Desktop.

Select an option

Save msassak/372868 to your computer and use it in GitHub Desktop.
Given "foo bar" do
if @stub
puts "I am stubbed"
else
puts "I am not stubbed"
end
end
Before('@stub') do
@stub = true
end
After('@stub') do
@stub = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment