article_spec: add changed article test
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Philipp Rothmann 2022-10-06 13:42:16 +02:00
parent 6cbfed5654
commit a71ca3c2dc

View file

@ -35,6 +35,12 @@ describe Article do
expect(new_price).to eq 120 expect(new_price).to eq 120
end end
end end
it 'computes changed article attributes' do # not done yet!
article2 = build :article, supplier: supplier, name: "banana"
expect(article.unequal_attributes(article2)[:name]).to eq "banana"
end
it 'computes the gross price correctly' do it 'computes the gross price correctly' do
article.deposit = 0 article.deposit = 0
article.tax = 12 article.tax = 12