Skip to content

Instantly share code, notes, and snippets.

@h-lame
Created July 12, 2011 19:53
Show Gist options
  • Save h-lame/1078820 to your computer and use it in GitHub Desktop.
Save h-lame/1078820 to your computer and use it in GitHub Desktop.
Feature: There should be monsters in my dungeon
In order to manage what types of monsters are available to my dungeons
As a dungeon master
I want to be able to see a list of monsters, add new ones, edit them and also delete them
Scenario: Adding a monster to my list of monsters available to my dungeons
Given I am on the new monster page
When I fill in "Name" with "Orc"
And I select "very" from "Scariness"
And I press "Create"
Then I should see "Monster: Orc"
And I should see "Scariness: very"
When I follow "See all monsters"
Then I should be on the page that lists all monsters
When I follow "Orc"
Then I should be on the page that describes the "Orc" monster
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment