Commit e7a10d70c881d2cb88960c6451ac2727f3351528
1 parent
b3e2c20c
Exists in
master
and in
28 other branches
Fixed test: features/new_content_on_cms.feature
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
features/new_content_on_cms.feature
... | ... | @@ -7,10 +7,10 @@ Feature: create content on cms |
7 | 7 | | login | name | |
8 | 8 | | joaosilva | Joao Silva | |
9 | 9 | And I am logged in as "joaosilva" |
10 | - And I am on Joao Silva's cms | |
10 | + And I am on joaosilva's cms | |
11 | 11 | |
12 | 12 | Scenario: open page to select type of content |
13 | - Given I follow "New Content" | |
13 | + Given I follow "New content" | |
14 | 14 | Then I should see "Choose the type of content" |
15 | 15 | |
16 | 16 | Scenario: list all content types |
... | ... | @@ -27,7 +27,7 @@ Feature: create content on cms |
27 | 27 | When I follow "Folder" |
28 | 28 | And I fill in "Title" with "My Folder" |
29 | 29 | And I press "Save" |
30 | - And I go to Joao Silva's cms | |
30 | + And I go to joaosilva's cms | |
31 | 31 | Then I should see "My Folder" |
32 | 32 | |
33 | 33 | Scenario: create a tiny_mce article |
... | ... | @@ -35,7 +35,7 @@ Feature: create content on cms |
35 | 35 | When I follow "Text article with visual editor" |
36 | 36 | And I fill in "Title" with "My tiny_mce article" |
37 | 37 | And I press "Save" |
38 | - And I go to Joao Silva's cms | |
38 | + And I go to joaosilva's cms | |
39 | 39 | Then I should see "My tiny_mce article" |
40 | 40 | |
41 | 41 | Scenario: create a textile article |
... | ... | @@ -43,7 +43,7 @@ Feature: create content on cms |
43 | 43 | When I follow "Text article with Textile markup" |
44 | 44 | And I fill in "Title" with "My textile article" |
45 | 45 | And I press "Save" |
46 | - And I go to Joao Silva's cms | |
46 | + And I go to joaosilva's cms | |
47 | 47 | Then I should see "My textile article" |
48 | 48 | |
49 | 49 | Scenario: create a Blog |
... | ... | @@ -51,7 +51,7 @@ Feature: create content on cms |
51 | 51 | When I follow "Blog" |
52 | 52 | And I fill in "Title" with "My blog" |
53 | 53 | And I press "Save" |
54 | - And I go to Joao Silva's cms | |
54 | + And I go to joaosilva's cms | |
55 | 55 | Then I should see "My blog" |
56 | 56 | |
57 | 57 | Scenario: create an event |
... | ... | @@ -59,7 +59,7 @@ Feature: create content on cms |
59 | 59 | When I follow "Event" |
60 | 60 | And I fill in "Title" with "My event" |
61 | 61 | And I press "Save" |
62 | - And I go to Joao Silva's cms | |
62 | + And I go to joaosilva's cms | |
63 | 63 | Then I should see "My event" |
64 | 64 | |
65 | 65 | Scenario: redirect to upload files if choose UploadedFile | ... | ... |