mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
215 B
Ruby
15 lines
215 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
$KCODE = 'none'
|
||
|
|
||
|
class TestMath < Test::Unit::TestCase
|
||
|
def test_math
|
||
|
assert(Math.sqrt(4) == 2)
|
||
|
|
||
|
self.class.class_eval {
|
||
|
include Math
|
||
|
}
|
||
|
assert(sqrt(4) == 2)
|
||
|
end
|
||
|
end
|