(tmp_path)
| 50 | |
| 51 | |
| 52 | def test_dart_additional_deps_versioned(tmp_path): |
| 53 | _make_local_repo(str(tmp_path)) |
| 54 | |
| 55 | ret, out = run_language( |
| 56 | tmp_path, |
| 57 | dart, |
| 58 | 'secure-random -l 4 -b 16', |
| 59 | deps=('encrypt:5.0.0',), |
| 60 | ) |
| 61 | assert ret == 0 |
| 62 | re_assert.Matches('^[a-f0-9]{8}\n$').assert_matches(out.decode()) |
nothing calls this directly
no test coverage detected