spec/storage_engine/abstract_spec.rb in lawnchair-0.6.10 vs spec/storage_engine/abstract_spec.rb in lawnchair-0.6.11
- old
+ new
@@ -104,13 +104,9 @@
describe ".computed_key" do
it "should prepend keys with Lawnchair:" do
abstract_store.computed_key("hooo").should == "Lawnchair:hooo"
end
- it "removes whitespace that might exist in a key" do
- abstract_store.computed_key("hooo tyyyyy").should == "Lawnchair:hoootyyyyy"
- end
-
it "raises an exception if no key is given" do
lambda do
abstract_store.computed_key("") { 1 }
end.should raise_error
\ No newline at end of file