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