def test_something(): assert slash.get_current_scope() == 'test'
def session_validation(): assert slash.get_current_scope() == 'session'
def _no_scope(): assert slash.get_current_scope() is None
def _validate_current_scope(expected_scope): assert slash.get_current_scope() == expected_scope