11 lines
177 B
Python
11 lines
177 B
Python
|
import unittest
|
||
|
|
||
|
import bumblebee.config
|
||
|
|
||
|
class TestConfigCreation(unittest.TestCase):
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|