Sha256: 4cf03da33b7963a2c966520c47a65ffb7740848a356b499c4e36e554c806f1d5
Contents?: true
Size: 461 Bytes
Versions: 11
Compression:
Stored size: 461 Bytes
Contents
require 'rails_helper' RSpec.describe Spree::OptionType, type: :model do context "touching" do it "should touch a product" do product_option_type = create(:product_option_type) option_type = product_option_type.option_type product = product_option_type.product product.update_column(:updated_at, 1.day.ago) option_type.touch expect(product.reload.updated_at).to be_within(3.seconds).of(Time.current) end end end
Version data entries
11 entries across 11 versions & 1 rubygems