mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 17:39:19 +00:00
22 lines
462 B
Python
Executable File
22 lines
462 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""
|
|
tests for is_url
|
|
"""
|
|
|
|
import unittest
|
|
from mozfile import is_url
|
|
|
|
|
|
class TestIsUrl(unittest.TestCase):
|
|
"""test the is_url function"""
|
|
|
|
def test_is_url(self):
|
|
self.assertTrue(is_url('http://mozilla.org'))
|
|
self.assertFalse(is_url('/usr/bin/mozilla.org'))
|
|
self.assertTrue(is_url('file:///usr/bin/mozilla.org'))
|
|
self.assertFalse(is_url('c:\foo\bar'))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|