Skip to content

Commit

Permalink
Test the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinche committed Dec 3, 2024
1 parent 75a3094 commit d9b9c5d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from .untyped import gen_attr_names


def test_gen_attr_names():
"""We can generate a lot of attribute names."""
assert len(list(gen_attr_names())) == 697

# No duplicates!
assert len(list(gen_attr_names())) == len(set(gen_attr_names()))

0 comments on commit d9b9c5d

Please sign in to comment.