Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_python
/
f8945f469402476b9320e64c6fee0789f1f79abf
/
.
/
examples
/
bzlmod
/
test.py
blob: 5d725a862cbf82ec7d3fc5614fbd87785df0e7e8 [
file
] [
log
] [
blame
]
import
unittest
from
__init__
import
main
class
ExampleTest
(
unittest
.
TestCase
):
def
test_main
(
self
):
self
.
assertEquals
(
"http://google.com"
,
main
(
"http://google.com"
))
if
__name__
==
"__main__"
:
unittest
.
main
()