Sign in
android
/
platform
/
external
/
bazelbuild-rules_python
/
a53c0d9
/
.
/
examples
/
pip_parse
/
test.py
blob: 3415a328dddfbba256b36ff633ea48c4c960b519 [
file
] [
log
] [
blame
]
import
unittest
import
main
class
ExampleTest
(
unittest
.
TestCase
):
def
test_main
(
self
):
self
.
assertEqual
(
"2.25.1"
,
main
.
version
())
if
__name__
==
'__main__'
:
unittest
.
main
()