summaryrefslogtreecommitdiff
path: root/bin/test
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-29 10:47:35 -0600
committermo khan <mo@mokhan.ca>2025-05-29 10:47:35 -0600
commite6e5636248e0a459e0950b9c9c73ef68c4d5b6ed (patch)
tree5aad8bd6f03dc4186f509490f01695e1cf817790 /bin/test
parentfd07da2c04d4628962cbd1cd5fcb9ea847bd9c03 (diff)
chore: install ruby and run tests
Diffstat (limited to 'bin/test')
-rwxr-xr-xbin/test4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/test b/bin/test
index 9320496..1f2a038 100755
--- a/bin/test
+++ b/bin/test
@@ -3,9 +3,12 @@
require "bundler/inline"
gemfile do
+ gem "minitest"
gem "net-hippie"
end
+require "minitest/autorun"
+
def assert(condition)
raise "heck" unless condition
end
@@ -24,7 +27,6 @@ def run(base_url)
assert_equal "404", response.code
end
-
begin
pid = Process.spawn("cargo run")
sleep 1