root/lang/ruby/video_scraper/test/www/video_scraper/test_eic_book.rb @ 29819

Revision 29819, 0.6 kB (checked in by valda, 4 years ago)

eic-book.com のサンプル動画に対応
バージョン 1.0.4

Line 
1# -*- mode:ruby; coding:utf-8 -*-
2
3require File.dirname(__FILE__) + '/../../test_helper'
4
5class EicBook < Test::Unit::TestCase
6  def test_scrape
7    vs = WWW::VideoScraper::EicBook.scrape('http://www.eic-book.com/detail_12759.html', default_opt)
8    assert_equal 'http://www.eic-book.com/detail_12759.html', vs.page_url
9    assert_equal 'http://flv.idol-mile.com/book/12759.flv', vs.video_url
10    assert_equal 'http://www.eic-book.com/img/product/h4/pp_12759.jpg', vs.thumb_url
11    assert_equal '藤木あやか  DVD 「お蔵入り寸前!藤木あやか A面」', vs.title
12    assert_equal 24, vs.capture_urls.count
13  end
14end
15
Note: See TracBrowser for help on using the browser.