diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-05-06 16:34:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 16:34:48 -0400 |
commit | 6666f1d36a89a1d81c5fa4c936a42bd0f5551bac (patch) | |
tree | 68d78d7633595fc34812b6eedfaa4545b930b56d /tools/util_test.py | |
parent | 221221cc9758225a85ecebb2de206591abf16e68 (diff) |
remove target_test.py (#5112)
Diffstat (limited to 'tools/util_test.py')
-rwxr-xr-x | tools/util_test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/util_test.py b/tools/util_test.py index 2d6770159..8c25b10ed 100755 --- a/tools/util_test.py +++ b/tools/util_test.py @@ -37,6 +37,9 @@ class TestUtil(DenoTestCase): assert stats3['req_per_sec'] == 96037 assert stats3['max_latency'] == 6.36 + def test_executable_exists(self): + assert os.path.exists(self.deno_exe) + if __name__ == '__main__': run_tests() |