allow non-shared articles to be part of a shared supplier using a blank order number

This commit is contained in:
wvengen 2014-01-24 22:10:00 +01:00
parent c5cc714f9b
commit 49e563af89
3 changed files with 10 additions and 2 deletions

View file

@ -105,5 +105,10 @@ describe Article do
expect(article.unit_quantity).to eq 5
expect(article.price).to be_within(1e-3).of(shared_article.price/5)
end
it 'does not synchronise when it has no order number' do
article.update_attributes :order_number => nil
expect(supplier.sync_all).to eq [[], []]
end
end
end