summaryrefslogtreecommitdiff
path: root/tools/util_test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-05-06 16:34:48 -0400
committerGitHub <noreply@github.com>2020-05-06 16:34:48 -0400
commit6666f1d36a89a1d81c5fa4c936a42bd0f5551bac (patch)
tree68d78d7633595fc34812b6eedfaa4545b930b56d /tools/util_test.py
parent221221cc9758225a85ecebb2de206591abf16e68 (diff)
remove target_test.py (#5112)
Diffstat (limited to 'tools/util_test.py')
-rwxr-xr-xtools/util_test.py3
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()