37 lines
1.3 KiB
Gherkin
37 lines
1.3 KiB
Gherkin
@aspects @javascript
|
|
Feature: User manages contacts
|
|
In order to share with a limited group
|
|
As a User
|
|
I want to create new aspects
|
|
|
|
Scenario: creating an aspect from contacts index
|
|
Given I am signed in
|
|
And I am on the contacts page
|
|
And I follow "+ Add an aspect"
|
|
And I fill in "Name" with "Dorm Mates" in the modal window
|
|
And I press "Create" in the modal window
|
|
Then I should see "Dorm Mates" within "#aspect_nav"
|
|
|
|
Scenario: creating an aspect from homepage
|
|
Given I am signed in
|
|
When I follow "Add an aspect"
|
|
And I fill in "Name" with "losers" in the modal window
|
|
And I press "Create" in the modal window
|
|
Then I should see "losers" within "#aspect_nav"
|
|
|
|
Scenario: Editing the aspect memberships of a contact from the aspect edit facebox
|
|
Given I am signed in
|
|
And I have 2 contacts
|
|
And I have an aspect called "Cat People"
|
|
When I am on the contacts page
|
|
And I follow "Cat People"
|
|
And I follow "Edit Cat People"
|
|
And I wait for the ajax to finish
|
|
And I press the first ".contact_list .button"
|
|
And I wait for the ajax to finish
|
|
Then I should have 1 contact in "Cat People"
|
|
|
|
When I press the first ".contact_list .button"
|
|
And I wait for the ajax to finish
|
|
Then I should have 0 contacts in "Cat People"
|
|
|