8000 remove call to undefined method assert_predicate · github/ruby@bcc062e · GitHub
[go: up one dir, main page]

Skip to content

Commit bcc062e

Browse files
author
Charlie Somerville
committed
remove call to undefined method assert_predicate
assert_predicate exists in whatever MiniTest is bundled with Ruby 2.0, but not in MiniTest 2.5.1, which is what is bundled with this particular Ruby
1 parent 1f04870 commit bcc062e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ruby/test_defined.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_defined
8888

8989
def test_defined_impl_specific
9090
feature7035 = '[ruby-core:47558]' # not spec
91-
assert_predicate(defined?(Foo), :frozen?, feature7035)
91+
assert(defined?(Foo).frozen?, feature7035)
9292
assert_same(defined?(Foo), defined?(Array), feature7035)
9393
end
9494

0 commit comments

Comments
 (0)
0