# Functional tests
-@pytest.mark.unittest
+@pytest.mark.integrationtest
def test_unknownsettingkeyerror():
'''Takes an argument'''
assert isinstance(common_ex.UnknownSettingKeyError('key'),
common_ex.Error)
-@pytest.mark.unittest
+@pytest.mark.integrationtest
def test_missingsettingerror():
'''Takes an argument'''
assert isinstance(common_ex.MissingSettingError('key'),
common_ex.Error)
-@pytest.mark.unittest
+@pytest.mark.integrationtest
def test_notbooleansettingerror():
'''Takes two arguments'''
assert isinstance(common_ex.NotBooleanSettingError('key', 'val'),