Created
November 18, 2022 09:21
-
-
Save fschwahn/300277770a2be9eaebf9d1f31fc592dc to your computer and use it in GitHub Desktop.
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 characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment