Sha256: bafcccf8fcee29ecc1a563fc75f8cf14c52816653e20d3708f87c678b4eed4a3
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
require "spec_helper" describe Jan do describe "#valid?" do context "valid codes" do valid_codes.each do |code| it "#{code} should be valid" do jan = Jan.new(code) expect(jan.valid?).to be true end end end context "invalid codes" do invalid_codes.each do |code| it "#{code} should be invalid" do jan = Jan.new(code) expect(jan.valid?).to be false end end end end describe "#check_digit" do it "should return last digit" do jan = Jan.new("4901277241126") expect(jan.check_digit).to eq(6) end end describe "#even_digits" do it "should return digits in even number-th position" do jan = Jan.new("4901277241126") expect(jan.even_digits).to eq([9,1,7,2,1,2]) end end describe "#odd_digits" do it "should return digits in odd number-th position except check digit" do jan = Jan.new("4901277241126") expect(jan.odd_digits).to eq([4,0,2,7,4,1]) end end describe "#instore_code?" do it "should return digits in odd number-th position except check digit" do jan = Jan.new("4901277241126") expect(jan.odd_digits).to eq([4,0,2,7,4,1]) end end describe "#instore_code?" do context "instore code" do it "should be true" do jan = Jan.new("2101085089347") expect(jan).to be_instore_code end end context "global code" do it "should be false" do jan = Jan.new("4901085089347") expect(jan).not_to be_instore_code end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jan-0.0.3 | spec/jan_spec.rb |
jan-0.0.2 | spec/jan_spec.rb |
jan-0.0.1 | spec/jan_spec.rb |