-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6763dbc
commit 79f56ad
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from py_check.main import get_bar, get_baz, get_foo | ||
|
||
|
||
def test_get_foo_should_return_foo(): | ||
assert get_foo() == "foo" | ||
|
||
|
||
def test_get_bar_should_return_bar(): | ||
assert get_bar() == "bar" | ||
|
||
|
||
def test_get_baz_should_return_baz(): | ||
assert get_baz() == "baz" |
79f56ad
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
everything back to how it was.