]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - test/redtube_test.rb
Whitespace cleanup.
[dead/whatever-dl.git] / test / redtube_test.rb
index a929f612dad16583220ca97fd2faad60a72dddfc..26ff8b28bb8ff97153155779b4a9554cc865cbb7 100644 (file)
@@ -1,8 +1,26 @@
-# Unit tests for the Redtube class. Basically just checking
-# the results of get_video_url for known ids.
+#
+# Copyright Michael Orlitzky
+#
+# http://michael.orlitzky.com/
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# http://www.fsf.org/licensing/licenses/gpl.html
+#
 
 require 'test/unit'
-require 'src/websites/redtube'
+require 'whatever-dl/websites/redtube'
+
+# Unit tests for the Redtube class. Basically just checking
+# the results of get_video_url for known ids.
 
 class RedtubeTest < Test::Unit::TestCase
 
@@ -26,13 +44,5 @@ class RedtubeTest < Test::Unit::TestCase
     assert(!Redtube.owns_url?('http://redtube/123'))
     assert(!Redtube.owns_url?('www.redtube.com/abc'))
   end
-
   
-  def test_get_video_url
-    rt = Redtube.new()
-
-    test_result = rt.get_video_url('http://www.redtube.com/6807')
-    assert_equal("http://dl.redtube.com/_videos_t4vn23s9jc5498tgj49icfj4678/0000006/X57OBH08G.flv", test_result)
-  end
-
 end