Sha256: f0c74086b01f662d05253ed0631c5c138048492bea786c8812c4dfba54a94db3
Contents?: true
Size: 294 Bytes
Versions: 27
Compression:
Stored size: 294 Bytes
Contents
package flapjack import "testing" func TestDialFails(t *testing.T) { address := "localhost:55555" // non-existent Redis server database := 0 _, err := Dial(address, database) if err == nil { t.Error("Dial should fail") } } // TODO(auxesis): add test for sending and receiving Events
Version data entries
27 entries across 27 versions & 1 rubygems