Sha256: b31443a56fa945ddfcca7344d1d5ce0149a6e5c2ca068e8c33c1b16c180a99fe
Contents?: true
Size: 1.13 KB
Versions: 57
Compression:
Stored size: 1.13 KB
Contents
require File.join(File.dirname(__FILE__), %w[.. .. spec_helper]) describe Feedzirra::Parser::RSS do describe "#will_parse?" do it "should return true for an RSS feed" do Feedzirra::Parser::RSS.should be_able_to_parse(sample_rss_feed) end # this is no longer true. combined rdf and rss into one # it "should return false for an rdf feed" do # Feedzirra::RSS.should_not be_able_to_parse(sample_rdf_feed) # end it "should return fase for an atom feed" do Feedzirra::Parser::RSS.should_not be_able_to_parse(sample_atom_feed) end end describe "parsing" do before(:each) do @feed = Feedzirra::Parser::RSS.parse(sample_rss_feed) end it "should parse the title" do @feed.title.should == "Tender Lovemaking" end it "should parse the url" do @feed.url.should == "http://tenderlovemaking.com" end it "should provide an accessor for the feed_url" do @feed.respond_to?(:feed_url).should == true @feed.respond_to?(:feed_url=).should == true end it "should parse entries" do @feed.entries.size.should == 10 end end end
Version data entries
57 entries across 57 versions & 21 rubygems