(tmp_path)
| 38 | |
| 39 | |
| 40 | def test_dart_additional_deps(tmp_path): |
| 41 | _make_local_repo(str(tmp_path)) |
| 42 | |
| 43 | ret = run_language( |
| 44 | tmp_path, |
| 45 | dart, |
| 46 | 'hello-world-dart', |
| 47 | deps=('hello_world_dart',), |
| 48 | ) |
| 49 | assert ret == (0, b'hello hello world\n') |
| 50 | |
| 51 | |
| 52 | def test_dart_additional_deps_versioned(tmp_path): |
nothing calls this directly
no test coverage detected