(self)
| 711 | assert c.foo_bar == "biz" |
| 712 | |
| 713 | def underscores_nested(self): |
| 714 | os.environ["INVOKE_FOO_BAR"] = "biz" |
| 715 | c = Config(defaults={"foo": {"bar": "notbiz"}}) |
| 716 | c.load_shell_env() |
| 717 | assert c.foo.bar == "biz" |
| 718 | |
| 719 | def both_types_of_underscores_mixed(self): |
| 720 | os.environ["INVOKE_FOO_BAR_BIZ"] = "baz" |
nothing calls this directly
no test coverage detected