Skip to content

Instantly share code, notes, and snippets.

@senny
Created July 28, 2014 10:25
Show Gist options
  • Save senny/dea81664600328b21e41 to your computer and use it in GitHub Desktop.
Save senny/dea81664600328b21e41 to your computer and use it in GitHub Desktop.
diff --git a/actionmailer/test/url_test.rb b/actionmailer/test/url_test.rb
index 589944f..5912e9a 100644
--- a/actionmailer/test/url_test.rb
+++ b/actionmailer/test/url_test.rb
@@ -12,6 +12,7 @@ end
class UrlTestMailer < ActionMailer::Base
default_url_options[:host] = 'www.basecamphq.com'
+ default_url_options[:protocol] = 'https'
configure do |c|
c.assets_dir = '' # To get the tests to pass
@@ -55,7 +56,7 @@ class ActionMailerUrlTest < ActionMailer::TestCase
expected = new_mail
expected.to = @recipient
expected.subject = "[Signed up] Welcome #{@recipient}"
- expected.body = "Hello there,\n\nMr. #{@recipient}. Please see our greeting at http://example.com/welcome/greeting http://www.basecamphq.com/welcome\n\n<img alt=\"Somelogo\" src=\"/images/somelogo.png\" />"
+ expected.body = "Hello there,\n\nMr. #{@recipient}. Please see our greeting at https://example.com/welcome/greeting https://www.basecamphq.com/welcome\n\n<img alt=\"Somelogo\" src=\"/images/somelogo.png\" />"
expected.from = "[email protected]"
expected.date = Time.local(2004, 12, 12)
expected.content_type = "text/html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment