Files
fizzy/test/models/card/messages_test.rb
T

10 lines
267 B
Ruby

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