Created
November 18, 2022 09:21
-
-
Save fschwahn/300277770a2be9eaebf9d1f31fc592dc to your computer and use it in GitHub Desktop.
Revisions
-
fschwahn created this gist
Nov 18, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ require "bundler/inline" gemfile(true) do source "https://rubygems.org" gem "activesupport", "~> 6.1.0" end require "active_support" require "active_support/inflector" require "minitest/autorun" class BugTest < Minitest::Test def test_stuff assert_equal "hero".pluralize, "heros" end end