spec/sequencer_spec.rb in alephant-sequencer-0.2.0 vs spec/sequencer_spec.rb in alephant-sequencer-0.3.0

- old
+ new

@@ -247,19 +247,19 @@ context "sequential" do let(:id_value) { 2 } it "is true" do - expect(subject.sequential?(data)).to be_true + expect(subject.sequential?(data)).to be end end context "nonsequential" do let(:id_value) { 0 } it "is false" do - expect(subject.sequential?(data)).to be_false + expect(subject.sequential?(data)).to be false end end end context "jsonpath = nil" do @@ -269,18 +269,18 @@ context "sequential" do let(:id_value) { 2 } it "is true" do - expect(subject.sequential?(data)).to be_true + expect(subject.sequential?(data)).to be end end context "nonsequential" do let(:id_value) { 0 } it "is false" do - expect(subject.sequential?(data)).to be_false + expect(subject.sequential?(data)).to be false end end end end