0
0
Fork 0
polecat/spec/index/read_spec.rb

23 lines
516 B
Ruby

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe "Index#read" do
before :all do
@path = prepare_index_dir
end
it "does not read any entries, when no files are in the directory" do
i = Polecat::Index.new @path
i.read
i.count.should == 0
end
it "loads all documents in the index directory" do
i = Polecat::Index.new @path
i.write Spec::FooDocument.new(:id => 1)
i.flush
i = Polecat::Index.new @path
i.read
i.count.should == 1
end
end