1
0
Fork 0
mirror of synced 2024-06-28 19:51:09 -04:00
dotbot/test/test_config.py

11 lines
280 B
Python

import os
from utils import DotbotTestCase
class ConfigTestCase(DotbotTestCase):
def test_blank_config_allowed(self):
self.run_dotbot(config='[]')
def test_empty_config_not_allowed(self):
self.assertRaises(SystemExit, self.run_dotbot, skip_config=True)