create_article.feature
1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Feature: create article
As a noosfero user
I want to create new articles
Background:
Given I am on the homepage
And the following users
| login | name |
| joaosilva | Joao Silva |
And I am logged in as "joaosilva"
Scenario: create a folder
Given I am on Joao Silva's control panel
And I follow "Manage Content"
When I follow "New Folder"
And I fill in "Title" with "My Folder"
And I press "Save"
And I go to Joao Silva's control panel
Then I should see "My Folder"
Scenario: redirect to the created folder
Given I am on Joao Silva's control panel
And I follow "Manage Content"
When I follow "New Folder"
And I fill in "Title" with "My Folder"
And I press "Save"
Then I should see "Content management"
And I should be on Joao Silva's cms
Scenario: cancel button back to cms
Given I follow "Control panel"
And I follow "Manage Content"
And I follow "New Folder"
When I follow "Cancel"
Then I should be on Joao Silva's cms
Scenario: display tag list field when creating event
Given I follow "Control panel"
And I follow "Manage Content"
And I follow "New article"
When I follow "Event"
Then I should see "Tag list"
Scenario: display tag list field when creating folder
Given I follow "Control panel"
And I follow "Manage Content"
When I follow "New folder"
Then I should see "Tag list"
Scenario: create new article with tags
Given I follow "Control panel"
And I follow "Manage Content"
And I follow "New article"
When I follow "Text article with Textile markup language"
Then I should see "Tag list"
When I fill in "Title" with "Article with tags"
And I fill in "Tag list" with "aurium, bug"
And I press "Save"
And I go to /joaosilva/article-with-tags
Then I should see "aurium" within "#article-tags a:first"
And I should see "bug" within "#article-tags a:last"