Sha256: f4bc6cf1fe0dc7515df2d87a017ad35d1b4b85e57360fb78bd3aec2e7e32b117
Contents?: true
Size: 1013 Bytes
Versions: 7
Compression:
Stored size: 1013 Bytes
Contents
# -*- coding: utf-8 -*- require "pp" require "spec_helper" describe Sosowa, "が #get, :log => 0 を呼ぶ時は" do before do @log = Sosowa.get :log => 0 end it "Sosowa::Logを返すこと" do @log.class.should == Sosowa::Log end it "最初がSosowa::Indexであること" do @log.first.class.should == Sosowa::Index end it "最初のタイトルがStringであること" do @log.first.title.class.should == String end it "#next_pageがSosowa::Logを返すこと" do @log.next_page.class.should == Sosowa::Log end it "#prev_pageがSosowa::Logを返すこと" do @log.prev_page.class.should == Sosowa::Log end it "#latest_logがFixnumを返すこと" do @log.latest_log.class.should == Fixnum end it "最初を#fetchしたらSosowa::Novelを返すこと" do @log.first.fetch.class.should == Sosowa::Novel end it "最初を#fetchしたSosowa::Novel#titleがStringなこと" do @log.first.fetch.title.class.should == String end end
Version data entries
7 entries across 7 versions & 1 rubygems