Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity] / vendor / plugins / acts_as_authenticated / generators / authenticated_mailer / templates / notifier_test.rb
diff --git a/vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/notifier_test.rb b/vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/notifier_test.rb
new file mode 100644 (file)
index 0000000..20aa05d
--- /dev/null
@@ -0,0 +1,27 @@
+require File.dirname(__FILE__) + '/../test_helper'
+require '<%= file_name %>_notifier'
+
+class <%= class_name %>NotifierTest < Test::Unit::TestCase
+  FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures'
+  CHARSET = "utf-8"
+
+  include ActionMailer::Quoting
+
+  def setup
+    ActionMailer::Base.delivery_method = :test
+    ActionMailer::Base.perform_deliveries = true
+    ActionMailer::Base.deliveries = []
+
+    @expected = TMail::Mail.new
+    @expected.set_content_type "text", "plain", { "charset" => CHARSET }
+  end
+
+  private
+    def read_fixture(action)
+      IO.readlines("#{FIXTURES_PATH}/<%= file_name %>_notifier/#{action}")
+    end
+
+    def encode(subject)
+      quoted_printable(subject, CHARSET)
+    end
+end

Benjamin Mako Hill || Want to submit a patch?