blob: 3e3f8593d44f57551e457f212d90f5742ec45aa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Activate the gems you are reporting the issue against.
gem 'activesupport', '4.2.0'
require 'active_support'
require 'active_support/core_ext/object/blank'
require 'minitest/autorun'
# Ensure backward compatibility with Minitest 4
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test)
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
refute "".present?
end
end
|