Sha256: 050631d741cdb70614a03c2b9703bad3ab24b586f4e8844569ad70147654b1b4
Contents?: true
Size: 617 Bytes
Versions: 8
Compression:
Stored size: 617 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 end
Version data entries
8 entries across 8 versions & 1 rubygems