-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpersistence.feature
More file actions
23 lines (21 loc) · 759 Bytes
/
persistence.feature
File metadata and controls
23 lines (21 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Feature: Session Persistence
Sessions store data that persists between page requests.
Session data is stored in a designated place and format.
Scenario Outline: Session data persists across requests
Given session <handler> stored at <location>
Then new session is started
And session is writeable
And session is saved and closed
And further session writes are not saved
Then previous session is started
And session is readable
And session can be reset
Then previous session is started
And session can be erased
And session can be deleted
Examples:
| handler | location |
| kodus | A |
| scrapbook | B |
| redis | 0 |
| file | C |