1
0
Fork 0
mirror of synced 2024-09-29 14:06:57 -04:00
dotbot/test/test_config.py

10 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)