github.com/tiagovtristao/plz@v13.4.0+incompatible/test/python_rules/pytest/test_relative_imports.py (about)

     1  """
     2  The tests below test out the relative imports within a package
     3  """
     4  from test.python_rules.pytest.relative_imports import greetings, name
     5  
     6  
     7  def test_function_call():
     8      assert greetings() == 'hello world'
     9      assert 1 == 1
    10  
    11  
    12  def test_name():
    13      assert name == 'TM'