Sha256: 8bb38e17a43500485adb296913aca55f88df20d553b2755f22f198a591213b72
Contents?: true
Size: 869 Bytes
Versions: 31
Compression:
Stored size: 869 Bytes
Contents
require 'spec_helper' require 'spree/testing_support/factories/stock_location_factory' RSpec.describe 'stock location factory' do let(:factory_class) { Spree::StockLocation } describe 'plain stock location' do let(:factory) { :stock_location } it_behaves_like 'a working factory' end describe 'stock location without variant propagation' do let(:factory) { :stock_location_without_variant_propagation } it_behaves_like 'a working factory' end describe 'stock location with items' do let(:factory) { :stock_location_with_items } it_behaves_like 'a working factory' end describe 'stock location for a country without subregions' do let(:country) { create(:country, iso: 'HK') } it 'succeeds' do expect( create(:stock_location, country: country) ).to be_a(Spree::StockLocation) end end end
Version data entries
31 entries across 31 versions & 1 rubygems