]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/website_test.rb
Whitespace cleanup.
[dead/whatever-dl.git] / test / website_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 'whatever-dl'
21
22 # Tests common to all websites.
23
24 class WebsiteTest < Test::Unit::TestCase
25
26 def test_nobody_owns_misc_urls
27 # These should wind up
28 assert(Website.create('6807').class() == Generic )
29 assert(Website.create('www').class() == Generic)
30 assert(Website.create('http').class() == Generic)
31 end
32
33
34 def test_owns_url_must_be_implemented
35 assert_raise NotImplementedError do
36 Website.owns_url?('http://www.example.com/')
37 end
38 end
39
40
41 def test_get_video_url_must_be_implemented
42 w = Website.new(nil)
43 assert_raise NotImplementedError do
44 w.get_video_url()
45 end
46 end
47
48
49 def test_youtube_url_returns_youtube_instance
50 yt = Website.create('http://www.youtube.com/watch?v=83-hlYMH1XE&feature=dir')
51 assert_instance_of(Youtube, yt)
52 end
53
54 end