Revert "Fix failing test"

This reverts commit d210ff9da21e0185c2f0dc9d116ce90b2d2beffb.
This commit is contained in:
benji 2016-02-02 18:46:05 +01:00
parent 969ae541a1
commit e07cf38986

View file

@ -55,6 +55,13 @@ describe Order do
expect(@order).to_not be_valid
end
end
describe 'products' do
it 'should be present' do
@order.products.clear
expect(@order).to_not be_valid
end
end
end
###############