From 9b005ca50862a5df0e7cd184873b6175c72f1881 Mon Sep 17 00:00:00 2001 From: Stuart Young Date: Thu, 22 Mar 2018 15:14:30 -0500 Subject: [PATCH] remove test_video_end_time_wo_default_start_time --- .../tests/video/test_video_times.py | 25 ------------------- 1 file changed, 25 deletions(-) diff --git a/common/test/acceptance/tests/video/test_video_times.py b/common/test/acceptance/tests/video/test_video_times.py index 5430421a58..23e21b8d40 100644 --- a/common/test/acceptance/tests/video/test_video_times.py +++ b/common/test/acceptance/tests/video/test_video_times.py @@ -50,31 +50,6 @@ class VideoTimesTest(VideoBaseTest): self.assertIn(self.video.position, ('0:05', '0:06')) - def test_video_end_time_wo_default_start_time(self): - """ - Scenario: End time works for Youtube video if starts playing from between. - Given we have a video in "Youtube" mode with end time set to 00:01:00 - And I seek video to "0:55" position - And I click video button "play" - And I wait until video stop playing - Then I see video slider at "1:00" position - - """ - data = {'end_time': '00:01:00'} - self.metadata = self.metadata_for_mode('youtube', additional_data=data) - - # go to video - self.navigate_to_video() - - self.video.seek('0:55') - - self.video.click_player_button('play') - - # wait until video stop playing - self.video.wait_for_state('pause') - - self.assertIn(self.video.position, ('1:00', '1:01')) - def test_video_start_time_and_end_time(self): """ Scenario: Start time and end time work together for Youtube video.