This commit is contained in:
Rhet Turnbull
2021-06-21 06:34:56 -07:00
parent 4a9f8a9ef5
commit 5ea01df69b

View File

@@ -16,7 +16,7 @@ VARS = {"foo": "bar", "bar": False, "test1": (), "test2": None, "test2_setting":
def test_init():
cfg = ConfigOptions("test", VARS)
assert isinstance(cfg, ConfigOptions)
assert cfg.foo is "bar"
assert cfg.foo == "bar"
assert cfg.bar == False
assert type(cfg.test1) == tuple