(dvc)
| 62 | |
| 63 | |
| 64 | def test_remove(dvc): |
| 65 | target1 = "1" |
| 66 | target2 = "2" |
| 67 | |
| 68 | args = parse_args(["remove", target1, target2]) |
| 69 | |
| 70 | cmd = args.func(args) |
| 71 | assert isinstance(cmd, CmdRemove) |
| 72 | assert args.targets == [target1, target2] |
| 73 | |
| 74 | cmd.repo.close() |
| 75 | |
| 76 | |
| 77 | def test_add(dvc): |
nothing calls this directly
no test coverage detected