Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
a1e1af44
Unverified
Commit
a1e1af44
authored
May 29, 2019
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
May 29, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4475 from shuujii/fix-Rational-eq-Complex
Fix `Rational#==(Complex)`
parents
4b82fdb6
902b2ce3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
20 deletions
+51
-20
mrbgems/mruby-rational/mrblib/rational.rb
mrbgems/mruby-rational/mrblib/rational.rb
+13
-0
mrbgems/mruby-rational/test/rational.rb
mrbgems/mruby-rational/test/rational.rb
+38
-20
No files found.
mrbgems/mruby-rational/mrblib/rational.rb
View file @
a1e1af44
...
...
@@ -62,6 +62,19 @@ class Rational < Numeric
nil
end
end
def
==
(
rhs
)
if
rhs
.
is_a?
(
Integral
)
return
numerator
==
rhs
if
denominator
==
1
rhs
=
Rational
(
rhs
)
end
if
rhs
.
is_a?
(
Rational
)
numerator
*
rhs
.
denominator
==
denominator
*
rhs
.
numerator
else
rhs
==
self
end
end
end
class
Numeric
...
...
mrbgems/mruby-rational/test/rational.rb
View file @
a1e1af44
class
UserDefinedNumeric
<
Numeric
def
initialize
(
n
)
@n
=
n
end
def
<
=>
(
rhs
)
return
nil
unless
rhs
.
respond_to?
(
:to_i
)
rhs
=
rhs
.
to_i
rhs
<
0
?
nil
:
@n
<=>
rhs
end
def
inspect
"
#{
self
.
class
}
(
#{
@n
}
)"
end
end
class
ComplexLikeNumeric
<
UserDefinedNumeric
def
==
(
rhs
)
@n
==
0
&&
rhs
==
0
end
undef
<=>
end
def
assert_rational
(
exp
,
real
)
assert_float
exp
.
numerator
,
real
.
numerator
assert_float
exp
.
denominator
,
real
.
denominator
...
...
@@ -17,7 +41,7 @@ def assert_cmp(exp, o1, o2)
if
exp
==
(
o1
<=>
o2
)
pass
else
flunk
""
,
" Expected
#{
o1
.
inspect
}
<=>
#{
o2
.
inspect
}
to be
#{
exp
}
"
flunk
""
,
" Expected
#{
o1
.
inspect
}
<=>
#{
o2
.
inspect
}
to be
#{
exp
}
.
"
end
end
...
...
@@ -106,6 +130,13 @@ assert 'Rational#==, Rational#!=' do
assert_equal_rational
(
false
,
Rational
(
2
,
1
),
1
r
)
assert_equal_rational
(
false
,
Rational
(
1
),
nil
)
assert_equal_rational
(
false
,
Rational
(
1
),
''
)
assert_equal_rational
(
true
,
0
r
,
UserDefinedNumeric
.
new
(
0
))
assert_equal_rational
(
true
,
1
r
,
UserDefinedNumeric
.
new
(
1
))
assert_equal_rational
(
false
,
1
r
,
UserDefinedNumeric
.
new
(
2
))
assert_equal_rational
(
false
,
-
1
r
,
UserDefinedNumeric
.
new
(
-
1
))
assert_equal_rational
(
true
,
0
r
,
ComplexLikeNumeric
.
new
(
0
))
assert_equal_rational
(
false
,
1
r
,
ComplexLikeNumeric
.
new
(
1
))
assert_equal_rational
(
false
,
1
r
,
ComplexLikeNumeric
.
new
(
2
))
end
assert
'Fixnum#==(Rational), Fixnum#!=(Rational)'
do
...
...
@@ -123,21 +154,6 @@ assert 'Float#==(Rational), Float#!=(Rational)' do
end
assert
'Rational#<=>'
do
num
=
Class
.
new
(
Numeric
)
do
def
initialize
(
n
)
@n
=
n
end
def
<
=>
(
rhs
)
rhs
=
rhs
.
to_i
rhs
<
0
?
nil
:
@n
<=>
rhs
end
def
inspect
"num(
#{
@n
}
)"
end
end
assert_cmp
(
-
1
,
Rational
(
-
1
),
Rational
(
0
))
assert_cmp
(
0
,
Rational
(
0
),
Rational
(
0
))
assert_cmp
(
1
,
Rational
(
1
),
Rational
(
0
))
...
...
@@ -158,10 +174,12 @@ assert 'Rational#<=>' do
assert_cmp
(
-
1
,
Rational
(
1
,
2
),
Rational
(
2
,
3
))
assert_cmp
(
-
1
,
Rational
(
1
,
2
),
Rational
(
2
,
3
))
assert_cmp
(
nil
,
3
r
,
"3"
)
assert_cmp
(
1
,
3
r
,
num
.
new
(
2
))
assert_cmp
(
0
,
3
r
,
num
.
new
(
3
))
assert_cmp
(
-
1
,
3
r
,
num
.
new
(
4
))
assert_cmp
(
nil
,
Rational
(
-
3
),
num
.
new
(
5
))
assert_cmp
(
1
,
3
r
,
UserDefinedNumeric
.
new
(
2
))
assert_cmp
(
0
,
3
r
,
UserDefinedNumeric
.
new
(
3
))
assert_cmp
(
-
1
,
3
r
,
UserDefinedNumeric
.
new
(
4
))
assert_cmp
(
nil
,
Rational
(
-
3
),
UserDefinedNumeric
.
new
(
5
))
assert_raise
(
NoMethodError
)
{
0
r
<=>
ComplexLikeNumeric
.
new
(
0
)
}
assert_raise
(
NoMethodError
)
{
1
r
<=>
ComplexLikeNumeric
.
new
(
2
)
}
end
assert
'Fixnum#<=>(Rational)'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment