]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
That new message in the HTML version of the mail should also be added to the plain...
[rails.git] / test / test_helper.rb
index 9633989cda4d109278d828b049688545b832159b..52d11027f8fdc9d696e26a9aa54fa67cfbce07fb 100644 (file)
@@ -185,5 +185,15 @@ module ActiveSupport
       stub_request(:get, "http://api.hostip.info/country.php?ip=0.0.0.0")
       stub_request(:get, "http://api.hostip.info/country.php?ip=127.0.0.1")
     end
+
+    def email_text_parts(message)
+      message.parts.each_with_object([]) do |part, text_parts|
+        if part.content_type.start_with?("text/")
+          text_parts.push(part)
+        elsif part.multipart?
+          text_parts.concat(email_text_parts(part))
+        end
+      end
+    end
   end
 end