# File test/test_store.rb, line 15 def test_hash_bdb() store = HashStore.new('bdb','mystore') assert_equal('bdb',store.hash_type) model = Model.new(store) model.add(Uri.new("http://xmlns.com"),Uri.new("http://predicate"),"baz") st = Statement.new(Uri.new("http://xmlns.com"),Uri.new("http://predicate"),"baz") assert(model.include_statement?(st)) end