Skip to content

Commit

Permalink
Fix that tests failed due to missing __init__.py in tests folder
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaei committed Oct 2, 2019
1 parent 17e790a commit bb3f2af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Empty file added tests/__init__.py
Empty file.
8 changes: 4 additions & 4 deletions tests/test_cv.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ def test_that_i_have_some_experience_with_programming_in_the_real_world():

def test_that_i_actually_have_an_education():
"""Did you know that I've got a bachelor and a master degree?"""
assert any("b.sc." in degree["type"] for degree in cv.education)
assert any("m.sc." in degree["type"] for degree in cv.education)
assert any("B.Sc." in degree["Type"] for degree in cv.education)
assert any("M.Sc." in degree["Type"] for degree in cv.education)


def test_that_i_can_be_contacted_by_a_potential_employer():
assert "phone" in cv.contact
assert "e-mail" in cv.contact
assert "Phone" in cv.contact
assert "E-mail" in cv.contact

0 comments on commit bb3f2af

Please sign in to comment.