2012-03-13 17:20:57 +00:00
|
|
|
Feature: Presentation Timer
|
|
|
|
Background:
|
|
|
|
Given I have a presentation counter
|
|
|
|
|
|
|
|
Scenario: Render
|
|
|
|
When I render the counter
|
|
|
|
Then the counter should show the time "00:00"
|
|
|
|
And the counter should not be running
|
|
|
|
|
2012-03-14 12:36:10 +00:00
|
|
|
Scenario: Manage the timer
|
2012-03-13 17:20:57 +00:00
|
|
|
When I start the timer
|
|
|
|
Then the counter should be running
|
2012-03-14 12:36:10 +00:00
|
|
|
When I stop the timer
|
|
|
|
Then the counter should not be running
|
2012-03-13 17:20:57 +00:00
|
|
|
|