def test_is_relative(self):
     validator = Validator(None)
     expect(validator.is_absolute("/index.html")).to_be_false()
Beispiel #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()
Beispiel #4
0
 def test_is_absolute(self):
     validator = Validator(None)
     expect(validator.is_absolute('http://globoi.com/index.html')).to_be_true()