Sha256: 39fad61b0743d9240f0fda3ea1b4f40bcb7ed9acd4c75ae3a98036eca212dac1
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
require "rubygems" require "spec" # gem install redgreen for colored test output begin require "redgreen" unless ENV['TM_CURRENT_LINE']; rescue LoadError; end path = File.expand_path(File.dirname(__FILE__) + "/../lib/") $LOAD_PATH.unshift(path) unless $LOAD_PATH.include?(path) require "lib/feedzirra" def sample_atom_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/AmazonWebServicesBlog.xml") end def sample_atom_entry_content File.read("#{File.dirname(__FILE__)}/sample_feeds/AmazonWebServicesBlogFirstEntryContent.xml") end def sample_itunes_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/itunes.xml") end def sample_rdf_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/HREFConsideredHarmful.xml") end def sample_rdf_entry_content File.read("#{File.dirname(__FILE__)}/sample_feeds/HREFConsideredHarmfulFirstEntry.xml") end def sample_rss_feed_burner_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/SamHarrisAuthorPhilosopherEssayistAtheist.xml") end def sample_rss_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/TenderLovemaking.xml") end def sample_rss_entry_content File.read("#{File.dirname(__FILE__)}/sample_feeds/TenderLovemakingFirstEntry.xml") end def sample_feedburner_atom_feed File.read("#{File.dirname(__FILE__)}/sample_feeds/PaulDixExplainsNothing.xml") end def sample_feedburner_atom_entry_content File.read("#{File.dirname(__FILE__)}/sample_feeds/PaulDixExplainsNothingFirstEntryContent.xml") end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rickerbh-feedzirra-0.0.4 | spec/spec_helper.rb |
rickerbh-feedzirra-0.0.5 | spec/spec_helper.rb |