diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-29 10:47:35 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-29 10:47:35 -0600 |
| commit | e6e5636248e0a459e0950b9c9c73ef68c4d5b6ed (patch) | |
| tree | 5aad8bd6f03dc4186f509490f01695e1cf817790 /bin | |
| parent | fd07da2c04d4628962cbd1cd5fcb9ea847bd9c03 (diff) | |
chore: install ruby and run tests
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/test | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |
