lib/adapter/spec/an_adapter.rb in adapter-0.6.0 vs lib/adapter/spec/an_adapter.rb in adapter-0.6.1
- old
+ new
@@ -6,18 +6,18 @@
let(:key) { 'key' }
let(:key2) { 'key2' }
let(:attributes) {
{
- :one => 'one',
- :three => 'three',
+ 'one' => 'one',
+ 'three' => 'three',
}
}
let(:attributes2) {
{
- :two => 'two',
- :four => 'four',
+ 'two' => 'two',
+ 'four' => 'four',
}
}
describe "#read" do
it "returns nil if key not available" do