コード例 #1
0
 def contact_url_with_protocol(self):
     return ensure_protocol(self.contact_url)
コード例 #2
0
 def website_with_protocol(self):
     return ensure_protocol(self.website)
コード例 #3
0
ファイル: test_utils.py プロジェクト: hackcyprus/jobber
def test_ensure_protocol(input, expected):
    assert utils.ensure_protocol(input) == expected
コード例 #4
0
ファイル: models.py プロジェクト: hackcyprus/jobber
 def contact_url_with_protocol(self):
     return ensure_protocol(self.contact_url)
コード例 #5
0
ファイル: models.py プロジェクト: hackcyprus/jobber
 def website_with_protocol(self):
     return ensure_protocol(self.website)
コード例 #6
0
ファイル: test_utils.py プロジェクト: hackcyprus/jobber
def test_ensure_protocol(input, expected):
    assert utils.ensure_protocol(input) == expected