boltons/tests/test_typeutils.py

8 lines
140 B
Python
Raw Normal View History

from boltons.typeutils import make_sentinel
def test_sentinel_falsiness():
not_set = make_sentinel('not_set')
assert not not_set