Files
fizzy/test/models/event_summary_test.rb
T
Jason Zimdars 537903ba0b Don't test for _Added by_ events
Note: The join method in `event_summary.rb` inserts a space that we need to account for
2025-04-22 15:06:05 -05:00

9 lines
264 B
Ruby

require "test_helper"
class EventSummaryTest < ActiveSupport::TestCase
test "body" do
assert_equal " Assigned to JZ.", event_summaries(:logo_initial_activity).body
assert_equal "Assigned to Kevin.", event_summaries(:logo_second_activity).body
end
end