Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_clean_none():
"""Check string 'None' conversion to None."""
assert not watchmaker.utils.clean_none('None')
assert not watchmaker.utils.clean_none('none')
assert not watchmaker.utils.clean_none(None)
assert watchmaker.utils.clean_none('not none') == 'not none'
def test_clean_none():
"""Check string 'None' conversion to None."""
assert not watchmaker.utils.clean_none('None')
assert not watchmaker.utils.clean_none('none')
assert not watchmaker.utils.clean_none(None)
assert watchmaker.utils.clean_none('not none') == 'not none'
def test_clean_none():
"""Check string 'None' conversion to None."""
assert not watchmaker.utils.clean_none('None')
assert not watchmaker.utils.clean_none('none')
assert not watchmaker.utils.clean_none(None)
assert watchmaker.utils.clean_none('not none') == 'not none'
def test_clean_none():
"""Check string 'None' conversion to None."""
assert not watchmaker.utils.clean_none('None')
assert not watchmaker.utils.clean_none('none')
assert not watchmaker.utils.clean_none(None)
assert watchmaker.utils.clean_none('not none') == 'not none'