Sha256: 903e56008116b41cdbbc3aad644a58f6017c44549d83c057b859f4d9a9e35e6d

Contents?: true

Size: 1.56 KB

Versions: 2

Compression:

Stored size: 1.56 KB

Contents

require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])

describe Feedzirra::Parser::AtomEntry do
  before(:each) do
    # I don't really like doing it this way because these unit test should only rely on AtomEntry,
    # but this is actually how it should work. You would never just pass entry xml straight to the AtomEnry
    @entry = Feedzirra::Parser::Atom.parse(sample_atom_feed).entries.first
  end
  
  it "should parse the title" do
    @entry.title.should == "AWS Job: Architect & Designer Position in Turkey"
  end
  
  it "should parse the url" do
    @entry.url.should == "http://aws.typepad.com/aws/2009/01/aws-job-architect-designer-position-in-turkey.html"
  end
  
  it "should parse the author" do
    @entry.author.should == "AWS Editor"
  end
  
  it "should parse the content" do
    @entry.content.should == sample_atom_entry_content
  end
  
  it "should provide a summary" do
    @entry.summary.should == "Late last year an entrepreneur from Turkey visited me at Amazon HQ in Seattle. We talked about his plans to use AWS as part of his new social video portal startup. I won't spill any beans before he's ready to..."
  end
  
  it "should parse the published date" do
    @entry.published.utc.to_s.should == "Fri Jan 16 18:21:00 UTC 2009"
  end

  it "should parse the categories" do
    @entry.categories.should == ['Turkey', 'Seattle']
  end
  
  it "should parse the updated date" do
    @entry.updated.to_s.should == "Fri Jan 16 18:21:00 UTC 2009"
  end
  
  it "should parse the id" do
    @entry.id.should == "tag:typepad.com,2003:post-61484736"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
julien51-feedzirra-0.0.14 spec/feedzirra/parser/atom_entry_spec.rb
julien51-feedzirra-0.0.16 spec/feedzirra/parser/atom_entry_spec.rb