(dvc)
| 88 | |
| 89 | |
| 90 | def test_config_unset(dvc): |
| 91 | name = "section.option" |
| 92 | value = "1" |
| 93 | |
| 94 | args = parse_args(["config", "-u", "--unset", name, value]) |
| 95 | |
| 96 | cmd = args.func(args) |
| 97 | assert isinstance(cmd, CmdConfig) |
| 98 | assert args.unset |
| 99 | assert args.name == (None, "section", "option") |
| 100 | assert args.value == value |
| 101 | |
| 102 | |
| 103 | def test_config_list(): |
nothing calls this directly
no test coverage detected