cirandas.net

ref: master

plugins/admin_notifications/test/helpers/notification_test_helper.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
module NotificationTestHelper
  def create_notification target, display_only_in_homepage=false, message="any_message", active=true
    AdminNotificationsPlugin::WarningNotification.create!(
      :target => target,
      :message => message,
      :active => active,
      :display_only_in_homepage => display_only_in_homepage
    )
  end
end