Skip to content

Instantly share code, notes, and snippets.

@fahim
Created October 18, 2011 20:41
Show Gist options
  • Save fahim/1296655 to your computer and use it in GitHub Desktop.
Save fahim/1296655 to your computer and use it in GitHub Desktop.
it "should not delete discounts" do
assert_equal 1, order.discount_adjustments.count
assert_equal 2, order.line_items.count
order.line_items.second.destroy
assert_equal 1, order.line_items.reload.count
assert_equal 1, order.discount_adjustments.reload.count # fails
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment