spec/transactions_spec.rb in fakeredis-0.6.0 vs spec/transactions_spec.rb in fakeredis-0.7.0
- old
+ new
@@ -31,10 +31,10 @@
expect(transaction).to eq(["OK", "OK", true, ["1", "2"]])
end
end
context '#discard' do
- it "should responde with 'OK' after #multi" do
+ it "should respond with 'OK' after #multi" do
@client.multi
expect(@client.discard).to eq('OK')
end
it "can't be run outside of #multi/#exec" do