Skip to content

Commit

Permalink
adding namespace test
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Feb 17, 2024
1 parent c04bbce commit 2cd8aa7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/test_namespace.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from __future__ import annotations

import screenpy_pyotp


def test_screenpy_pyotp() -> None:
expected = ("AuthenticateWith2FA",)

assert sorted(screenpy_pyotp.__all__) == sorted(expected)


def test_abilities() -> None:
expected = ("AuthenticateWith2FA",)
assert sorted(screenpy_pyotp.abilities.__all__) == sorted(expected)

0 comments on commit 2cd8aa7

Please sign in to comment.