<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,2 +1,3 @@
 pkg
-doc
\ No newline at end of file
+doc
+.DS_Store
\ No newline at end of file</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -18,7 +18,8 @@ module FeedMe
         :email =&gt; 'author/email',
         :name =&gt; 'author/name',
         :uri =&gt; 'author/uri'
-      }
+      },
+      :entries =&gt; :special
     },
     :rss2 =&gt; {
       :title =&gt; :title,
@@ -28,7 +29,8 @@ module FeedMe
       :href =&gt; :undefined,
       :description =&gt; :description,
       :generator =&gt; :generator,
-      :author =&gt; :special
+      :author =&gt; :special,
+      :entries =&gt; :special
     }
   }
   </diff>
      <filename>lib/feed_me/consts.rb</filename>
    </modified>
    <modified>
      <diff>@@ -157,6 +157,34 @@ describe FeedMe::FeedParser do
     end
   end
   
+  describe '#entries' do
+    it &quot;should return an array of entries for an atom feed&quot; do
+      @atom.entries.should be_an_instance_of(Array)
+    end
+    
+    it &quot;should have the correct length for an atom feed&quot; do
+      @atom.should have(3).entries
+    end
+    
+    it &quot;should return items that are properly parsed for an atom feed&quot; do
+      @atom.entries.first.title.should == &quot;First title&quot;
+      @atom.entries.first.url.should == &quot;http://imaginary.host/posts/3&quot;
+    end
+    
+    it &quot;should return an array of entries for an rss2 feed&quot; do
+      @rss2.entries.should be_an_instance_of(Array)
+    end
+    
+    it &quot;should have the correct length for an rss2 feed&quot; do
+      @rss2.should have(4).entries
+    end
+    
+    it &quot;should return items that are properly parsed for an rss2 feed&quot; do
+      @rss2.entries.first.title.should == &quot;Star City&quot;
+      @rss2.entries.first.url.should == &quot;http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp&quot;
+    end
+  end
+  
   describe '#to_hash' do
     it &quot;should serialize the title of an atom feed&quot; do
       @atom.to_hash[:title].should == &quot;Test feed&quot;
@@ -186,6 +214,12 @@ describe FeedMe::FeedParser do
       @atom.to_hash[:generator].should == &quot;Roll your own&quot;
     end
     
+    it &quot;should serialize the entries of an atom feed&quot; do
+      @atom.to_hash[:entries].should be_an_instance_of(Array)
+      @atom.to_hash[:entries].first.title.should == &quot;First title&quot;
+      @atom.to_hash[:entries].first.url.should == &quot;http://imaginary.host/posts/3&quot;
+    end
+    
     it &quot;should serialize the author of an atom feed&quot; do
       author = @atom.to_hash[:author]
       
@@ -222,6 +256,12 @@ describe FeedMe::FeedParser do
       @rss2.to_hash[:generator].should == &quot;Weblog Editor 2.0&quot;
     end
     
+    it &quot;should serialize the entries of an rss2 feed&quot; do
+      @rss2.to_hash[:entries].should be_an_instance_of(Array)
+      @rss2.to_hash[:entries].first.title.should == &quot;Star City&quot;
+      @rss2.to_hash[:entries].first.url.should == &quot;http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp&quot;
+    end
+    
     it &quot;should serialize the author of an rss2 feed&quot; do
       
       author = @rss2.to_hash[:author]
@@ -231,33 +271,5 @@ describe FeedMe::FeedParser do
       author.uri.should be_nil
     end
   end
-  
-  describe '#entries' do
-    it &quot;should return an array of entries for an atom feed&quot; do
-      @atom.entries.should be_an_instance_of(Array)
-    end
-    
-    it &quot;should have the correct length for an atom feed&quot; do
-      @atom.should have(3).entries
-    end
-    
-    it &quot;should return items that are properly parsed for an atom feed&quot; do
-      @atom.entries.first.title.should == &quot;First title&quot;
-      @atom.entries.first.url.should == &quot;http://imaginary.host/posts/3&quot;
-    end
-    
-    it &quot;should return an array of entries for an rss2 feed&quot; do
-      @rss2.entries.should be_an_instance_of(Array)
-    end
-    
-    it &quot;should have the correct length for an rss2 feed&quot; do
-      @rss2.should have(4).entries
-    end
-    
-    it &quot;should return items that are properly parsed for an rss2 feed&quot; do
-      @rss2.entries.first.title.should == &quot;Star City&quot;
-      @rss2.entries.first.url.should == &quot;http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp&quot;
-    end
-  end
 
 end
\ No newline at end of file</diff>
      <filename>spec/feed_parser_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a798c9ceae8344b86a95ac9ff5d8a9dd6cece21d</id>
    </parent>
  </parents>
  <author>
    <name>Jonas Nicklas</name>
    <email>jonas.nicklas@gmail.com</email>
  </author>
  <url>http://github.com/jnicklas/feed_me/commit/d53ef3be621ae3adc401304309800e0459fdd3b1</url>
  <id>d53ef3be621ae3adc401304309800e0459fdd3b1</id>
  <committed-date>2008-04-14T14:20:33-07:00</committed-date>
  <authored-date>2008-04-14T14:20:33-07:00</authored-date>
  <message>specs for entries</message>
  <tree>e76f6fe26075774c8324ecaf65742010bb65f881</tree>
  <committer>
    <name>Jonas Nicklas</name>
    <email>jonas.nicklas@gmail.com</email>
  </committer>
</commit>
