diff options
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() |