1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/prime] Fix Prime.include?

Previously, it would be an infinite loop if passed a non-prime
integer.

Also, Prime.include? should also provide similar results to
Module#include? if passed a Module, so handle that.

For consistency with Enumerable#include?, return false if passed
other object types.

Fixes Ruby Bug 10167.

https://github.com/ruby/prime/commit/55dda6aa7f
This commit is contained in:
Jeremy Evans 2019-08-11 13:14:38 -07:00 committed by Hiroshi SHIBATA
parent 2630757fb5
commit e79fc05a4c
2 changed files with 20 additions and 0 deletions

View file

@ -141,6 +141,18 @@ class Prime
generator.each(&block)
end
# Return true if +obj+ is an Integer an is prime. Also returns
# true if +obj+ is a Module that is an ancestor of +Prime+.
def include?(obj)
case obj
when Integer
prime?(obj)
when Module
Module.instance_method(:include?).bind(Prime).call(obj)
else
false
end
end
# Returns true if +value+ is a prime number, else returns false.
#

View file

@ -27,6 +27,14 @@ class TestPrime < Test::Unit::TestCase
assert_equal PRIMES, primes
end
def test_include?
assert_equal(false, Prime.include?(nil))
assert_equal(true, Prime.include?(3))
assert_equal(false, Prime.include?(4))
assert_equal(true, Prime.include?(Enumerable))
assert_equal(false, Prime.include?(Comparable))
end
def test_integer_each_prime
primes = []
Integer.each_prime(1000) do |p|