features/basic_tracking.feature in metry-1.1.0 vs features/basic_tracking.feature in metry-1.2.0
- old
+ new
@@ -1,7 +1,7 @@
Feature: Access Tracking
- In order to how users are using my site
+ In order to know how users are using my site
As an web application creator
I want to have all accesses to my application tracked
Background:
Given an empty tracking database
@@ -36,10 +36,11 @@
| key | value |
| visitor | 1 |
And there should be a tracking event "2":
| key | value |
| visitor | 1 |
+ And there should be a visitor "1"
Scenario: Two visitors are tracked
Given I view "/"
When I am a new visitor
Given I view "/"
@@ -47,9 +48,12 @@
| key | value |
| visitor | 1 |
And there should be a tracking event "2":
| key | value |
| visitor | 2 |
+ And there should be 2 visitors
+ And there should be a visitor "1"
+ And there should be a visitor "2"
Scenario: All facets should be tracked
When I view "/"
Then there should be a tracking event "1":
| key | value |