- Make 1.0x speed default Youtube ID Lyla's introduction video. - Add acceptance tests for toggling captions on/off. - Move captions settings acceptance tests into video-editor.feature. - Rename acceptance test methods to reflect their function. - Remove undefined variable from video Jasmine tests. - Test VideoDescriptor.from_xml when no attributes are set. - Convert Stringy* to non-Stringy equivalents. - Test parsing of Youtube ID strings and times in more cases. - Remove some commented-out code.
25 lines
893 B
Gherkin
25 lines
893 B
Gherkin
Feature: Video Component
|
|
As a course author, I want to be able to view my created videos in Studio.
|
|
|
|
Scenario: Autoplay is disabled in Studio
|
|
Given I have created a Video component
|
|
Then when I view the video it does not have autoplay enabled
|
|
|
|
Scenario: Creating a video takes a single click
|
|
Given I have clicked the new unit button
|
|
Then creating a video takes a single click
|
|
|
|
Scenario: Captions are hidden correctly
|
|
Given I have created a Video component
|
|
And I have hidden captions
|
|
Then when I view the video it does not show the captions
|
|
|
|
Scenario: Captions are shown correctly
|
|
Given I have created a Video component
|
|
Then when I view the video it does show the captions
|
|
|
|
Scenario: Captions are toggled correctly
|
|
Given I have created a Video component
|
|
And I have toggled captions
|
|
Then when I view the video it does show the captions
|