include 'models/subscription_observer.rb'

class SubscriptionObserver
  def after_create(subscription)
    subscription.logger.info(
      "Normally we would send an email to "admin@example.com telling " +
      "them that a new subscription has been created " +
      "(id=#{subscription.id}), but since we're running in a test " +
      "environment, we'll refrain from spamming them.")
  end
end