Files
fizzy/test/models/card/eventable/system_commenter_test.rb
T
Jorge Manrubia 1bb8de8564 Fix tests
2025-09-29 13:13:40 +02:00

53 lines
1.4 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
require "test_helper"
class Card::Eventable::SystemCommenterTest < ActiveSupport::TestCase
setup do
Current.session = sessions(:david)
@card = cards(:text)
end
test "card_assigned" do
assert_system_comment "David assigned this to Kevin" do
@card.toggle_assignment users(:kevin)
end
end
test "card_unassigned" do
@card.toggle_assignment users(:kevin)
@card.comments.destroy_all # To skip deduplication logic
assert_system_comment "David unassigned from Kevin" do
@card.toggle_assignment users(:kevin)
end
end
test "card_closed" do
assert_system_comment "Closed as Done by David" do
@card.close
end
end
test "card_title_changed" do
assert_system_comment "David changed the title from The text is too small to Make text larger" do
@card.update! title: "Make text larger"
end
end
test "don't notify on system comments" do
@card.watch_by(users(:david))
assert_no_difference -> { Notification.count } do
@card.toggle_assignment users(:kevin)
end
end
private
def assert_system_comment(expected_comment)
assert_difference -> { @card.comments.count }, 1 do
yield
assert @card.comments.last.creator.system?
assert_match Regexp.new(expected_comment.strip, Regexp::IGNORECASE), @card.comments.last.body.to_plain_text.strip
end
end
end