Sign in
chromium
/
external
/
github.com
/
dpranke
/
typ
/
refs/heads/dev
/
.
/
examples
/
python
/
hello
/
nouns_test.py
blob: 22644a8d71345e51926830717207396b4b6dae8a [
file
] [
log
] [
blame
] [
edit
]
import
unittest
from
hello
import
greetings
class
TestGreetingLookup
(
unittest
.
TestCase
):
def
test_none
(
self
):
self
.
assertEqual
(
greetings
.
lookup
(),
"Hello"
)
def
test_you
(
self
):
self
.
assertEqual
(
greetings
.
lookup
(
"Seeya"
),
"Seeya"
)