Skip to content

Commit

Permalink
Fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
josephine-wolf-oberholtzer committed Nov 30, 2024
1 parent 8e1b497 commit aecc0b8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/mixers/test_Track.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
from .conftest import assert_diff, capture, debug_tree, does_not_raise


@pytest_asyncio.fixture
async def complex_session() -> Session:
session = Session()
await sesison.add_mixer()
mixer_one = session.mixers[0]
session.mixers[1]
await session.boot()
await session.quit()
return session


@pytest.mark.parametrize("online", [False, True])
@pytest.mark.parametrize(
"expected_commands, expected_diff",
Expand Down

0 comments on commit aecc0b8

Please sign in to comment.