def test_httpify_should_prepend_http_to_adress_without_http(): assert webapp.httpify('vg.no') == 'http://vg.no'
def test_httpify_should_not_prepend_when_adress_already_has_http(): assert webapp.httpify('http://vg.no') == 'http://vg.no'
def test_httpify_should_strip_whitescpace(): assert webapp.httpify(' http://vg.no ') == 'http://vg.no'