mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
0f67e6d3f0
https://buildkite.com/rails/rails/builds/68834#f6a78cf3-6ae4-4148-b1c2-114ccce0731a/941-1012
23 lines
476 B
Ruby
23 lines
476 B
Ruby
# 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.3"
|
|
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
|