Commit 62b3d773ff3ab935d39edfb7fbeadb8360b85a19
1 parent
cb8a5d9d
Exists in
master
and in
28 other branches
export_users.feature
Showing
1 changed file
with
2 additions
and
4 deletions
Show diff stats
features/export_users.feature
... | ... | @@ -9,15 +9,13 @@ Feature: export users |
9 | 9 | |
10 | 10 | Scenario: Export users as XML |
11 | 11 | Given I am logged in as admin |
12 | - When I follow "Administration" | |
13 | - And I follow "Users" | |
12 | + When I go to /admin/users | |
14 | 13 | And I follow "[XML]" |
15 | 14 | Then I should see "ultraje" |
16 | 15 | |
17 | 16 | Scenario: Export users as CSV |
18 | 17 | Given I am logged in as admin |
19 | - When I follow "Administration" | |
20 | - And I follow "Users" | |
18 | + When I go to /admin/users | |
21 | 19 | And I follow "[CSV]" |
22 | 20 | Then I should see "name;email" |
23 | 21 | And I should see "ultraje" | ... | ... |