Files
fizzy/test/models/board/cards_test.rb
T
2025-11-05 13:41:12 +01:00

16 lines
383 B
Ruby

require "test_helper"
class Board::CardsTest < ActiveSupport::TestCase
test "touch cards when the name changes" do
board = boards(:writebook)
assert_changes -> { board.cards.first.updated_at } do
board.update!(name: "New Name")
end
assert_no_changes -> { board.cards.first.updated_at } do
board.update!(updated_at: 1.hour.from_now)
end
end
end