Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 1, 2021
1 parent fdc1e44 commit 02f143d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test___all__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def test___all__(pytester: Any) -> None:
"""
pytester.makepyfile(
test_a="""
from aiohttp import *
"""
from aiohttp import *
"""
)
result = pytester.runpytest("-vv")
result.assert_outcomes(passed=0, errors=0)
Expand All @@ -17,8 +17,8 @@ def test___all__(pytester: Any) -> None:
def test_web___all__(pytester: Any) -> None:
pytester.makepyfile(
test_b="""
from aiohttp.web import *
"""
from aiohttp.web import *
"""
)
result = pytester.runpytest("-vv")
result.assert_outcomes(passed=0, errors=0)

0 comments on commit 02f143d

Please sign in to comment.