Files
fizzy/test/models/card/messages_test.rb
T
2025-11-05 13:31:54 +01:00

10 lines
262 B
Ruby

require "test_helper"
class Card::MessagesTest < ActiveSupport::TestCase
test "creating a card does not create a message by default" do
card = boards(:writebook).cards.create! creator: users(:kevin), title: "New"
assert_empty card.comments
end
end