(self)
| 363 | ) |
| 364 | |
| 365 | def explicit_namespace_works_correctly(self): |
| 366 | # Regression-ish test re #288 |
| 367 | ns = Collection.from_module(load("integration")) |
| 368 | expect("print-foo", out="foo\n", program=Program(namespace=ns)) |
| 369 | |
| 370 | def allows_explicit_task_module_specification(self): |
| 371 | expect("-c integration print-foo", out="foo\n") |
nothing calls this directly
no test coverage detected