blob: 9c7ed2c2a1924569961fe70ccf7f8be3a986b03e (
plain) (
tree)
|
|
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activesupport", "6.0.0.rc1"
end
require "active_support"
require "active_support/core_ext/object/blank"
require "minitest/autorun"
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
refute "".present?
end
end
|