def test_is_relative(self):
     validator = Validator(None)
     expect(validator.is_absolute("/index.html")).to_be_false()
Exemple #2
0
 def test_is_relative(self):
     validator = Validator(None)
     expect(validator.is_absolute('/index.html')).to_be_false()
 def test_is_absolute(self):
     validator = Validator(None)
     expect(validator.is_absolute("http://globoi.com/index.html")).to_be_true()
Exemple #4
0
 def test_is_absolute(self):
     validator = Validator(None)
     expect(validator.is_absolute('http://globoi.com/index.html')).to_be_true()