Sha256: c1b3bc6fb07fd7a0db69ed599e842433bc87794bae7c42d1c44798e0b98530b1
Contents?: true
Size: 456 Bytes
Versions: 60
Compression:
Stored size: 456 Bytes
Contents
require "spec_helper" module Switchman describe DefaultShard do context "sharding" do include RSpecHelper it "should be equivalent to a real default shard" do expect(Shard.default).to be_is_a(Shard) expect(DefaultShard.send(:new)).to eq Shard.default end end it "all defaultshards should be equivalent to each other" do expect(DefaultShard.send(:new)).to eq DefaultShard.send(:new) end end end
Version data entries
60 entries across 60 versions & 1 rubygems