# File test/test_rdf.rb, line 24 def test_initialize store = HashStore.new() assert_instance_of(HashStore, store) assert_equal('hashes',store.store_type) assert_equal('memory',store.hash_type) assert_raises(RedlandError,'should raise exception'){ store = HashStore.new('bdb') } end