[ruby/spec] Removed space between method name and argument list paren
This commit is contained in:
parent
7860277527
commit
d0f41aa238
@ -18,7 +18,7 @@ describe "BigDecimal#<=>" do
|
|||||||
def coerce(other)
|
def coerce(other)
|
||||||
return [other, BigDecimal('123')]
|
return [other, BigDecimal('123')]
|
||||||
end
|
end
|
||||||
def >= (other)
|
def >=(other)
|
||||||
BigDecimal('123') >= other
|
BigDecimal('123') >= other
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#>" do
|
|||||||
def coerce(other)
|
def coerce(other)
|
||||||
return [other, BigDecimal('123')]
|
return [other, BigDecimal('123')]
|
||||||
end
|
end
|
||||||
def > (other)
|
def >(other)
|
||||||
BigDecimal('123') > other
|
BigDecimal('123') > other
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#>=" do
|
|||||||
def coerce(other)
|
def coerce(other)
|
||||||
return [other, BigDecimal('123')]
|
return [other, BigDecimal('123')]
|
||||||
end
|
end
|
||||||
def >= (other)
|
def >=(other)
|
||||||
BigDecimal('123') >= other
|
BigDecimal('123') >= other
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#<" do
|
|||||||
def coerce(other)
|
def coerce(other)
|
||||||
return [other, BigDecimal('123')]
|
return [other, BigDecimal('123')]
|
||||||
end
|
end
|
||||||
def < (other)
|
def <(other)
|
||||||
BigDecimal('123') < other
|
BigDecimal('123') < other
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#<=" do
|
|||||||
def coerce(other)
|
def coerce(other)
|
||||||
return [other, BigDecimal('123')]
|
return [other, BigDecimal('123')]
|
||||||
end
|
end
|
||||||
def <= (other)
|
def <=(other)
|
||||||
BigDecimal('123') <= other
|
BigDecimal('123') <= other
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user