Sha256: b632372868a475987ca693f8fae4fb77789de991878c8025a1dc465e32e88f6c
Contents?: true
Size: 566 Bytes
Versions: 48
Compression:
Stored size: 566 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::StoreCreditCategory, type: :model do describe "#non_expiring?" do let(:store_credit_category) { build(:store_credit_category, name: category_name) } context "non-expiring type store credit" do let(:category_name) { "Non-expiring" } it { expect(store_credit_category).to be_non_expiring } end context "expiring type store credit" do let(:category_name) { "Expiring" } it { expect(store_credit_category).not_to be_non_expiring } end end end
Version data entries
48 entries across 48 versions & 2 rubygems