]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Refactor remaining way model tests to use factories.
[rails.git] / test / test_helper.rb
index e535d1645bb5f269231d076db3ede273b7ed6643..dba005145483604835b45f477f22388604dee6b7 100644 (file)
@@ -45,11 +45,6 @@ module ActiveSupport
       fixtures :relation_members
       set_fixture_class :relation_members => OldRelationMember
 
-      fixtures :gpx_files, :gps_points, :gpx_file_tags
-      set_fixture_class :gpx_files => Trace
-      set_fixture_class :gps_points => Tracepoint
-      set_fixture_class :gpx_file_tags => Tracetag
-
       fixtures :redactions
     end
 
@@ -183,5 +178,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