summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozfile/tests/test_url.py
blob: a19f5f16a8bf52cf639c6acd657595aad9bafd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

"""
tests for is_url
"""
import unittest

import mozunit
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__":
    mozunit.main()