]>
gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/redtube_remote_test.rb
2 # Copyright Michael Orlitzky
4 # http://michael.orlitzky.com/
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # http://www.fsf.org/licensing/licenses/gpl.html
20 require 'src/websites/redtube'
23 class RedtubeRemoteTest
< Test
::Unit::TestCase
25 # This is a remote test because the default get_video_filename()
26 # relies on the video URL. Of course, we don't know the video URL
27 # unless we download and parse the page.
28 def test_get_video_filename
29 rt
= Redtube
.new('http://www.redtube.com/6807')
30 expected_result
= 'X57OBH08G.flv'
31 actual_result
= rt
.get_video_filename()
32 assert_equal(expected_result
, actual_result
)