]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/fuckedtube_remote_test.rb
Update the makefile to build/install a gem.
[dead/whatever-dl.git] / test / fuckedtube_remote_test.rb
1 #
2 # Copyright Michael Orlitzky
3 #
4 # http://michael.orlitzky.com/
5 #
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.
10 #
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.
15 #
16 # http://www.fsf.org/licensing/licenses/gpl.html
17 #
18
19 require 'test/unit'
20 require 'src/websites/fuckedtube'
21
22
23 class FuckedtubeRemoteTest < Test::Unit::TestCase
24
25 def test_get_video_filename_works_on_good_urls
26 ft = Fuckedtube.new('http://www.fuckedtube.com/video/161/Pumped-Pussy/')
27 expected_filename = 'br_pumpedpussy.flv'
28 actual_filename = ft.get_video_filename()
29 assert_equal(expected_filename, actual_filename)
30 end
31
32 end