* Tell the manager to close the display before terminating; * Log about quit request and process termination.
14 lines
330 B
Gherkin
14 lines
330 B
Gherkin
Feature: program termination
|
|
|
|
Background:
|
|
Given uhwm is running
|
|
|
|
Scenario: terminates on quit request
|
|
When I tell uhwm to quit
|
|
Then uhwm must terminate successfully
|
|
|
|
Scenario: logs about termination
|
|
When I tell uhwm to quit
|
|
Then uhwm must terminate successfully
|
|
And the output must match /terminat/i
|