Fixed timeago errors Added cucumber stuff to test timeago at inbox Show localized date/time in tooltip Remove title attributes
28 lines
1.3 KiB
Gherkin
28 lines
1.3 KiB
Gherkin
@javascript
|
|
Feature: private messages
|
|
In order to be talkative
|
|
As a User
|
|
I want to converse with people
|
|
|
|
Background:
|
|
Given a user named "Robert Grimm" with email "bob@bob.bob"
|
|
And a user named "Alice Awesome" with email "alice@alice.alice"
|
|
When I sign in as "bob@bob.bob"
|
|
And a user with username "robert_grimm" is connected with "alice_awesome"
|
|
|
|
Scenario: send a message
|
|
Given I send a message with subject "Greetings" and text "hello, alice!" to "Alice Awesome"
|
|
Then I should see "Greetings" within "#conversation_inbox"
|
|
And I should see "Greetings" within "#conversation_show"
|
|
And I should see "less than a minute ago" within "#conversation_inbox"
|
|
And I should see "less than a minute ago" within "#conversation_show"
|
|
And I click on selector "a.participants_link"
|
|
Then I should see the participants popover
|
|
And I should see "Alice Awesome" as part of the participants popover
|
|
And I should see "Robert Grimm" as part of the participants popover
|
|
Then I close the participants popover
|
|
And "Alice Awesome" should be part of active conversation
|
|
And I should see "hello, alice!" within ".stream_container"
|
|
When I sign in as "alice@alice.alice"
|
|
And I reply with "hey, how you doing?"
|
|
Then I should see "hey, how you doing?" within ".stream_container"
|