Files
fizzy/test/models/notifier/popped_test.rb
T
Kevin McConnell 66d0f29d45 Notify on pop as well
And DRY up some duplication.
2025-01-13 14:21:47 +00:00

10 lines
270 B
Ruby

require "test_helper"
class Notifier::PoppedTest < ActiveSupport::TestCase
test "generate populates the notification details" do
Notifier.for(events(:shipping_popped)).generate
assert_equal "popped: We need to ship the app", Notification.last.body
end
end