Skip to content

Commit 469cc38

Browse files
committed
test: add feature file for managing hotel rooms
1 parent 5c3bc12 commit 469cc38

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Feature: Manage hotel rooms
2+
3+
Scenario: Register a new room
4+
Given the hotel management system is operational
5+
When I register a room named "Blue Ocean"
6+
Then the room "Blue Ocean" should appear in the room list
7+
8+
Scenario: Register multiple rooms
9+
Given the hotel management system is operational
10+
When I register the following rooms:
11+
| name | type | status | cleanStatus |
12+
| Ocean View | VIP | FREE | CLEAN |
13+
| Garden View | STANDARD | OCCUPIED | DIRTY |
14+
| City Light | SUITE | FREE | CLEAN |
15+
Then there should be 3 rooms available in the system

0 commit comments

Comments
 (0)