Sha256: 5ef9d65767728fb48d34930b190f856078278cecebe95af468ed38475fa3ed66
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 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 "shoudl parse the description" do @feed.description.should == 'The act of making love, tenderly.' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fblee-feedzirra-0.0.18 | spec/feedzirra/parser/rss_spec.rb |
fblee-feedzirra-0.0.17 | spec/feedzirra/parser/rss_spec.rb |