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 | |
| parent | fd07da2c04d4628962cbd1cd5fcb9ea847bd9c03 (diff) | |
chore: install ruby and run tests
| -rw-r--r-- | .tool-versions | 1 | ||||
| -rwxr-xr-x | bin/test | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.tool-versions b/.tool-versions index 3c1425f..147432f 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1,2 @@ +ruby 3.4.4 rust 1.87.0 @@ -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 |
