Skip to content

Instantly share code, notes, and snippets.

@fschwahn
Created November 18, 2022 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fschwahn/300277770a2be9eaebf9d1f31fc592dc to your computer and use it in GitHub Desktop.
Save fschwahn/300277770a2be9eaebf9d1f31fc592dc to your computer and use it in GitHub Desktop.
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