summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMasaki Muranaka <[email protected]>2013-04-02 11:38:36 +0900
committerMasaki Muranaka <[email protected]>2013-04-02 11:43:35 +0900
commit39bf29411a7b0f6e30bf1e166c961b8175fd71b2 (patch)
tree5d0f25bc5ac298627d31182e337e3519d79efa62
parente129a4c8ef5b9bffc696202a73575c8ead187175 (diff)
downloadmruby-39bf29411a7b0f6e30bf1e166c961b8175fd71b2.tar.gz
mruby-39bf29411a7b0f6e30bf1e166c961b8175fd71b2.zip
Add "Comparable" to labels.
-rw-r--r--test/t/comparable.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/t/comparable.rb b/test/t/comparable.rb
index f3c03a9b5..c95134246 100644
--- a/test/t/comparable.rb
+++ b/test/t/comparable.rb
@@ -1,5 +1,5 @@
-assert('<', '15.3.3.2.1') do
+assert('Comparable#<', '15.3.3.2.1') do
class Foo
include Comparable
def <=>(x)
@@ -10,7 +10,7 @@ assert('<', '15.3.3.2.1') do
(Foo.new < Foo.new) == false
end
-assert('<=', '15.3.3.2.2') do
+assert('Comparable#<=', '15.3.3.2.2') do
class Foo
include Comparable
def <=>(x)
@@ -21,7 +21,7 @@ assert('<=', '15.3.3.2.2') do
(Foo.new <= Foo.new) == true
end
-assert('==', '15.3.3.2.3') do
+assert('Comparable#==', '15.3.3.2.3') do
class Foo
include Comparable
def <=>(x)
@@ -32,7 +32,7 @@ assert('==', '15.3.3.2.3') do
(Foo.new == Foo.new) == true
end
-assert('>', '15.3.3.2.4') do
+assert('Comparable#>', '15.3.3.2.4') do
class Foo
include Comparable
def <=>(x)
@@ -43,7 +43,7 @@ assert('>', '15.3.3.2.4') do
(Foo.new > Foo.new) == false
end
-assert('>=', '15.3.3.2.5') do
+assert('Comparable#>=', '15.3.3.2.5') do
class Foo
include Comparable
def <=>(x)