]>
gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/youporn_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/youporn'
22 # Unit tests for the Youporn class. Basically just checking
23 # the results of parse_video_url for now.
25 class YoupornTest
< Test
::Unit::TestCase
27 def test_owns_youporn_urls
28 assert(Youporn
.owns_url
?('http://www.youporn.com/watch/65778'))
29 assert(Youporn
.owns_url
?('http://www.youporn.com/watch/61637/amateursoffie-fuckingagain-andtakinglo-ad/'))
33 def test_parse_video_url
38 File
.open('test/fixtures/youporn/page_data-65778.html') do |f
|
42 test_result
= yp
.send('parse_video_url', page_data
)
43 assert_equal('http://download.youporn.com/download/112911/flv/65778_moaning_mom_fucked_at_night.flv', test_result
)