Sha256: 1a889fefdbc76603e7815a15c2b6e45181bec0c0e6c19527f777d94ee9a25793
Contents?: true
Size: 464 Bytes
Versions: 48
Compression:
Stored size: 464 Bytes
Contents
# frozen_string_literal: true shared_context 'checkout setup' do let!(:store) { create(:store) } let!(:country) { create(:country, states_required: true) } let!(:state) { create(:state, country: country) } let!(:shipping_method) { create(:shipping_method) } let!(:stock_location) { create(:stock_location) } let!(:mug) { create(:product, name: "RoR Mug") } let!(:payment_method) { create(:check_payment_method) } let!(:zone) { create(:zone) } end
Version data entries
48 entries across 48 versions & 3 rubygems