mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
32 lines
739 B
Gherkin
32 lines
739 B
Gherkin
Feature: Character sheets
|
|
As an author,
|
|
I want to record information about the content I create
|
|
So that I don't forget
|
|
|
|
Background:
|
|
Given I have an account
|
|
And I log in
|
|
|
|
Scenario Outline: I create new content
|
|
When I create a <content_type>
|
|
Then that <content_type> should be saved
|
|
|
|
Examples:
|
|
| content_type |
|
|
| character |
|
|
| location |
|
|
| item |
|
|
| universe |
|
|
|
|
Scenario Outline: I change my content's name
|
|
Given I have created a <content_type>
|
|
When I change my <content_type>'s name
|
|
Then that new name should be saved
|
|
|
|
Examples:
|
|
| content_type |
|
|
| character |
|
|
| location |
|
|
| item |
|
|
| universe |
|