[macruby-changes] [2656] MacRuby/trunk/spec/frozen/tags/macruby/core/bignum

source_changes at macosforge.org source_changes at macosforge.org
Sun Sep 27 02:56:20 PDT 2009


Revision: 2656
          http://trac.macosforge.org/projects/ruby/changeset/2656
Author:   mattaimonetti at gmail.com
Date:     2009-09-27 02:56:18 -0700 (Sun, 27 Sep 2009)
Log Message:
-----------
untagged a lot of bignum specs that are now passing

Modified Paths:
--------------
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/comparison_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divmod_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/modulo_tags.txt

Removed Paths:
-------------
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_and_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_or_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_xor_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/coerce_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/div_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divide_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/equal_value_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/left_shift_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/minus_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/multiply_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/plus_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/quo_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/right_shift_tags.txt

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_and_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_and_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_and_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#& returns self bitwise AND other

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_or_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_or_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_or_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#| returns self bitwise OR other

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_xor_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_xor_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/bit_xor_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#^ returns self bitwise EXCLUSIVE OR other

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/coerce_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/coerce_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/coerce_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#coerce coerces other to a Bignum and returns [other, self] when passed a Fixnum

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/comparison_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/comparison_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/comparison_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,8 +1,2 @@
-fails:Bignum#<=> returns nil when the given argument is not an Integer
 fails:Bignum#<=> returns 1 when self is Infinity and other is a Bignum
-fails:Bignum#<=> returns 1 when self is negative and other is Infinty
-fails:Bignum#<=> returns 1 when self is Infinity and other is a Bignum
-fails:Bignum#<=> returns 1 when self is negative and other is Infinty
-fails:Bignum#<=> returns 1 when self is negative and other is -Infinity
 fails:Bignum#<=> returns -1 when self is negative and other is Infinty
-fails:Bignum#<=> returns -1 when self is negative and other is Infinty

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/div_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/div_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/div_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#div raises a TypeError when given a non-Integer

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divide_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divide_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divide_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#/ raises a TypeError when given a non-Integer

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divmod_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divmod_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/divmod_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,4 +1,2 @@
-fails:Bignum#divmod raises a FloatDomainError when the given argument is 0 and a Float
-fails:Bignum#divmod raises a TypeError when the given argument is not an Integer
-fails:Bignum#divmod raises a ZeroDivisionError when the given argument is 0 and a Float
 fails:Bignum#divmod raises a FloatDomainError if other is NaN
+fails:Bignum#divmod raises a ZeroDivisionError when the given argument is 0 and a Float

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/equal_value_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/equal_value_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/equal_value_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,2 +0,0 @@
-fails:Bignum#== calls 'other == self' if the given argument is not an Integer
-fails:Bignum#== returns the result of 'other == self' as a boolean

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/left_shift_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/left_shift_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/left_shift_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#<< raises a RangeError when the given argument is a Bignum

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/minus_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/minus_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/minus_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#- raises a TypeError when given a non-Integer

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/modulo_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/modulo_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/modulo_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,6 +1,4 @@
 critical:Bignum#modulo returns the modulus obtained from dividing self by the given argument
 critical:Bignum#modulo raises a ZeroDivisionError when the given argument is 0
-critical:Bignum#modulo does not raise a FloatDomainError when the given argument is 0 and a Float
 critical:Bignum#modulo raises a TypeError when given a non-Integer
-fails:Bignum#% raises a TypeError when given a non-Integer
-fails:Bignum#% returns the modulus obtained from dividing self by the given argument
+fails:Bignum#% returns the modulus obtained from dividing self by the given argument
\ No newline at end of file

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/multiply_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/multiply_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/multiply_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#* raises a TypeError when given a non-Integer

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/plus_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/plus_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/plus_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1 +0,0 @@
-fails:Bignum#+ raises a TypeError when given a non-Integer

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/quo_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/quo_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/quo_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,6 +0,0 @@
-fails:Bignum#quo returns the result of self divided by the given Integer as a Float
-fails:Bignum#quo does not raise a ZeroDivisionError when the given Integer is 0
-fails:Bignum#quo does not raise a FloatDomainError when the given Integer is 0 and a Float
-fails:Bignum#quo raises a TypeError when given a non-Integer
-fails:Bignum#quo raises a ZeroDivisionError when the given Integer is 0
-fails:Bignum#quo does not raise a FloatDomainError when the given argument is 0 and a Float

Deleted: MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/right_shift_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/right_shift_tags.txt	2009-09-27 09:15:25 UTC (rev 2655)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/bignum/right_shift_tags.txt	2009-09-27 09:56:18 UTC (rev 2656)
@@ -1,2 +0,0 @@
-fails:Bignum#>> returns 0 when the given argument is a Bignum and self is positive
-fails:Bignum#>> returns -1 when the given argument is a Bignum and self is negative
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090927/9f4948c6/attachment-0001.html>


More information about the macruby-changes mailing list