Welcome to mirror list, hosted at ThFree Co, Russian Federation.

media-embed.feature « desktop « features - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23ff9795ca650f370cda5bfbf3a25cff9e660bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 # We can create a separate cucumber profile that will run these tests with Selenium
@javascript
Feature: oembed
  In order to make videos easy accessible
  As a user
  I want the media links in my posts be replaced by an embedded player

  Background:
    Given following user exists:
      | username    | email             |
      | Alice Smith | alice@alice.alice |
    And I sign in as "alice@alice.alice"

  Scenario: Post a video link
    When I click the publisher and post "[title](https://example.com/file.ogv)"
    Then I should see a HTML5 video player

  Scenario: Post an audio link
    When I click the publisher and post "[title](https://example.com/file.ogg)"
    Then I should see a HTML5 audio player