Check correct calculation of fc_price

This commit is contained in:
Patrick Gansterer 2017-10-08 12:24:31 +02:00
parent 2d4891bf1d
commit ca7416f2e7
2 changed files with 3 additions and 7 deletions

View file

@ -21,12 +21,8 @@ describe Article do
expect(article.gross_price).to be >= article.price
end
it 'fc-price >= gross price' do
if article.gross_price > 0
expect(article.fc_price).to be > article.gross_price
else
expect(article.fc_price).to be >= article.gross_price
end
it 'computes the fc price correctly' do
expect(article.fc_price).to eq((article.gross_price * 1.05).round(2))
end
it 'knows when it is deleted' do