Last active
August 29, 2015 14:19
-
-
Save barnes7td/4dd01736f3c95151ee87 to your computer and use it in GitHub Desktop.
Add 'http://' to a url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rspec' | |
# Got REGEX from: | |
# http://stackoverflow.com/questions/7908598/add-https-to-url-if-its-not-there | |
def add_url_protocol(url) | |
if url[/^https?:\/\//] | |
url | |
else | |
"http://#{url}" | |
end | |
end | |
RSpec.describe "http_method" do | |
it "leaves url the same if it has 'http://'" do | |
url = "http://www.espn.com" | |
expect(add_url_protocol(url)).to eq(url) | |
end | |
it "leaves url the same if it has 'https://'" do | |
url = "https://www.espn.com" | |
expect(add_url_protocol(url)).to eq(url) | |
end | |
it "adds 'http://' if not there" do | |
url = "www.espn.com" | |
new_url = "http://www.espn.com" | |
expect(add_url_protocol(url)).to eq(new_url) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment