From 7fb5261783bc975fdde6894a8c7f4ef778a19189 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 30 Oct 2024 15:01:13 -0500 Subject: feat: Ruby (#33) * bundle gem locusts Signed-off-by: Matt Strapp * Add changeset and flesh out gemspec Signed-off-by: Matt Strapp * Oops Signed-off-by: Matt Strapp * nothing Signed-off-by: Matt Strapp * actually draw the owl Signed-off-by: Matt Strapp * oops Signed-off-by: Matt Strapp * oops 2 Signed-off-by: Matt Strapp --------- Signed-off-by: Matt Strapp --- tests/test_helper.rb | 7 +++++++ tests/test_locusts.rb | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 tests/test_helper.rb create mode 100644 tests/test_locusts.rb (limited to 'tests') diff --git a/tests/test_helper.rb b/tests/test_helper.rb new file mode 100644 index 0000000..f390cdd --- /dev/null +++ b/tests/test_helper.rb @@ -0,0 +1,7 @@ +# typed: strict +# frozen_string_literal: true + +$LOAD_PATH.unshift File.expand_path("../src", __dir__) +require "locusts" + +require "minitest/autorun" diff --git a/tests/test_locusts.rb b/tests/test_locusts.rb new file mode 100644 index 0000000..d2e8811 --- /dev/null +++ b/tests/test_locusts.rb @@ -0,0 +1,10 @@ +# typed: true +# frozen_string_literal: true + +require "test_helper" + +class TestLocusts < Minitest::Test + def test_it_does_something_useful + assert_nil ::Locusts::Locusts.introduceLocusts + end +end -- cgit v1.2.3