Sha256: 05d6bd0bda8223d8264743d124e29bbb34225bd7bcae8441b19f9b9776ea216c
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
shared_examples_for "Map CRDT" do let(:typed_collection){ Riak::Crdt::TypedCollection } it 'contains counters' do expect(subject).to respond_to(:counters) expect(subject.counters).to be_an_instance_of typed_collection end it 'contains flags' do expect(subject).to respond_to(:flags) expect(subject.counters).to be_an_instance_of typed_collection end it 'contains maps' do expect(subject).to respond_to(:maps) expect(subject.counters).to be_an_instance_of typed_collection end it 'contains registers' do expect(subject).to respond_to(:registers) expect(subject.counters).to be_an_instance_of typed_collection end it 'contains sets' do expect(subject).to respond_to(:sets) expect(subject.counters).to be_an_instance_of typed_collection end it 'accepts operations' do expect(subject).to respond_to(:operate) end end shared_examples_for "Counter CRDT" do it 'has a value' do expect(subject).to respond_to :value end it 'has an increment method' do expect(subject).to respond_to :increment end it 'has a decrement method' do expect(subject).to respond_to :decrement end it 'has a batch method' do expect(subject).to respond_to :batch end end shared_examples_for 'Set CRDT' do it 'has a value' do expect(subject).to respond_to :value expect(subject).to respond_to :members expect(subject).to respond_to :to_a end it 'has an include? method' do expect(subject).to respond_to :include? end it 'has an empty? method' do expect(subject).to respond_to :empty? end it 'has an add method' do expect(subject).to respond_to :add end it 'has a remove method' do expect(subject).to respond_to :remove end end shared_examples_for 'HyperLogLog CRDT' do it 'has a value' do expect(subject).to respond_to :value end it 'has a cardinality' do expect(subject).to respond_to :cardinality end it 'has an add method' do expect(subject).to respond_to :add end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
riak-client-2.5.0 | spec/riak/crdt/shared_examples.rb |