]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/website_test.rb
e140676683502e3484117e1e6e06ff6707858d63
[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
21 # Tests common to all websites.
22
23 # All of the website classes are located in one
24 # directory, so we can 'require' them automatically.
25 Dir.glob('src/websites/*.rb').each do |r|
26 require r
27 end
28
29 class WebsiteTest < Test::Unit::TestCase
30
31 def test_doesnt_own_misc_urls
32 Website.subclasses.each do |w|
33 assert(!w.owns_url?('6807'))
34 assert(!w.owns_url?('www'))
35 assert(!w.owns_url?('http'))
36 end
37 end
38
39 end