Skip to content

Instantly share code, notes, and snippets.

@pzol
Created March 25, 2012 16:27
Show Gist options
  • Save pzol/2198056 to your computer and use it in GitHub Desktop.
Save pzol/2198056 to your computer and use it in GitHub Desktop.
Beautiful Acceptance Tests
feature 'Drinking Beer' do
scenario 'Drink a favorite beer' do
user = TestUser.new.extend(BeerDrinker)
user.pickup_favorite_beer "Belfast"
user.drinks_chosen_beer!
end
scenario "Getting wasted" do
user = TestUser.new.extend(BeerDrinker)
user.drink_until_he_looks_like_a_sack_of_potatoes
user.should_not_get_another_beer
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment