()
| 266 | |
| 267 | |
| 268 | def test_dot_graph_defaults(): |
| 269 | # Test with default args. |
| 270 | default_name = "mydask" |
| 271 | default_format = "png" |
| 272 | target = ".".join([default_name, default_format]) |
| 273 | |
| 274 | ensure_not_exists(target) |
| 275 | try: |
| 276 | result = dot_graph(dsk) |
| 277 | assert os.path.isfile(target) |
| 278 | assert isinstance(result, Image) |
| 279 | finally: |
| 280 | ensure_not_exists(target) |
| 281 | |
| 282 | |
| 283 | def test_cytoscape_graph(tmpdir): |
nothing calls this directly
no test coverage detected
searching dependent graphs…