Skip to content

Commit

Permalink
Use rails convetions
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Mar 25, 2014
1 parent 833109c commit ade741e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -341,14 +341,14 @@ def test_belongs_to_with_touch_option_on_touch
end

def test_belongs_to_with_touch_option_on_touch_without_updated_at_attributes
assert !LineItem.column_names.include?("updated_at")
assert_not LineItem.column_names.include?("updated_at")

line_item = LineItem.create!
invoice = Invoice.create!(line_items: [line_item])
initial = invoice.updated_at
line_item.touch

refute_equal initial, invoice.reload.updated_at
assert_not_equal initial, invoice.reload.updated_at
end

def test_belongs_to_with_touch_option_on_touch_and_removed_parent
Expand Down

0 comments on commit ade741e

Please sign in to comment.