Sign in
chromium
/
external
/
github.com
/
dpranke
/
typ
/
6a8dabdbf78e3113ab95244bb2a84718e278952e
/
.
/
examples
/
python
/
hello
/
greetings_test.py
blob: fc021f2e35d61da0a6c19a86fe16af4d9974fac0 [
file
] [
log
] [
blame
]
import
unittest
from
hello
import
nouns
class
TestNounLookup
(
unittest
.
TestCase
):
def
test_none
(
self
):
self
.
assertEqual
(
nouns
.
lookup
(),
"world"
)
def
test_you
(
self
):
self
.
assertEqual
(
nouns
.
lookup
(
"you"
),
"you"
)