16 lines
459 B
Gherkin
16 lines
459 B
Gherkin
Feature: Room Management UI
|
|
|
|
Background:
|
|
Given I am logged in as "admin@perauset.org"
|
|
|
|
Scenario: Create a room
|
|
When I navigate to "/rooms"
|
|
Then I should see heading "Rooms"
|
|
And I click "Create Room"
|
|
And I fill in "Room Code" with "R-101"
|
|
And I fill in "Room Name" with "Sunrise Room"
|
|
And I select "Private" from "Room Type"
|
|
And I fill in "Capacity" with "2"
|
|
And I click "Save Room"
|
|
Then I should see "Sunrise Room"
|