spec/anemone_spec.rb in spk-anemone-0.2.4 vs spec/anemone_spec.rb in spk-anemone-0.3.0

- old
+ new

@@ -1,15 +1,15 @@ require File.dirname(__FILE__) + '/spec_helper' describe Anemone do - + it "should have a version" do Anemone.const_defined?('VERSION').should == true end - it "should return a Anemone::Core from the crawl, which has a PageHash" do + it "should return a Anemone::Core from the crawl, which has a PageStore" do result = Anemone.crawl(SPEC_DOMAIN) result.should be_an_instance_of(Anemone::Core) - result.pages.should be_an_instance_of(Anemone::PageHash) + result.pages.should be_an_instance_of(Anemone::PageStore) end - + end