Renamed test classes.
This commit is contained in:
parent
b61eb4ea44
commit
4f86048139
|
@ -7,7 +7,7 @@ from decimal import Decimal
|
|||
import unittest
|
||||
|
||||
|
||||
class BenedictTestCase(unittest.TestCase):
|
||||
class benedict_test_case(unittest.TestCase):
|
||||
|
||||
def test_benediction_decorator(self):
|
||||
@benediction
|
||||
|
|
|
@ -7,7 +7,7 @@ import datetime as dt
|
|||
import unittest
|
||||
|
||||
|
||||
class DictUtilTestCase(unittest.TestCase):
|
||||
class dict_util_test_case(unittest.TestCase):
|
||||
|
||||
def test_clean(self):
|
||||
i = {
|
||||
|
|
|
@ -7,7 +7,7 @@ import shutil
|
|||
import unittest
|
||||
|
||||
|
||||
class IODictTestCase(unittest.TestCase):
|
||||
class io_dict_test_case(unittest.TestCase):
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
|
|
|
@ -5,7 +5,7 @@ from benedict.dicts.keypath import KeypathDict
|
|||
import unittest
|
||||
|
||||
|
||||
class KeypathDictTestCase(unittest.TestCase):
|
||||
class keypath_dict_test_case(unittest.TestCase):
|
||||
|
||||
def test_init_with_custom_separator(self):
|
||||
d = {
|
||||
|
|
|
@ -10,7 +10,7 @@ import time
|
|||
import unittest
|
||||
|
||||
|
||||
class ParseDictTestCase(unittest.TestCase):
|
||||
class parse_dict_test_case(unittest.TestCase):
|
||||
|
||||
def test_get_bool_default(self):
|
||||
d = {
|
||||
|
|
Loading…
Reference in New Issue