We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3bc12 commit 469cc38Copy full SHA for 469cc38
src/test/resources/org/soujava/demos/mongodb/room.feature
@@ -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
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