mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
10 lines
301 B
Ruby
10 lines
301 B
Ruby
require 'spec_helper'
|
|
|
|
describe Openfoodnetwork::Application, 'configuration' do
|
|
let(:config) { described_class.config }
|
|
|
|
it "sets OrderManagement::Stock::BasicSplitter as the only stock splitter" do
|
|
expect(config.spree.stock_splitters).to eq [OrderManagement::Stock::BasicSplitter]
|
|
end
|
|
end
|