12 lines
233 B
Python
12 lines
233 B
Python
from hello_world import __version__
|
|
import hello_world
|
|
|
|
|
|
def test_version():
|
|
assert hello_world.get_version() == __version__
|
|
|
|
|
|
def welcome_should_match(snapshot):
|
|
message = hello_world.welcome_message()
|
|
assert message == snapshot
|