spec/redis_spec.rb in em-synchrony-1.0.4 vs spec/redis_spec.rb in em-synchrony-1.0.5
- old
+ new
@@ -3,11 +3,11 @@
describe EM::Protocols::Redis do
it "should yield until connection is ready" do
EventMachine.synchrony do
connection = EM::Protocols::Redis.connect
- connection.connected.should be_true
+ connection.connected.should eq(true)
EventMachine.stop
end
end
@@ -88,11 +88,11 @@
end
end
end
end
- it "should execute sync add and auth" do
+ it "should execute sync add and auth", ci_skip: true do
EventMachine.synchrony do
redis = EM::Protocols::Redis.connect
redis.auth('abc')
redis.delete('key')
@@ -100,6 +100,6 @@
redis.scard('key').should == 1
EM.stop
end
end
-end
\ No newline at end of file
+end