[macruby-changes] [1967] MacRuby/branches/experimental/spec/frozen/tags/macruby/core

source_changes at macosforge.org source_changes at macosforge.org
Wed Jul 1 16:51:15 PDT 2009


Revision: 1967
          http://trac.macosforge.org/projects/ruby/changeset/1967
Author:   eloy.de.enige at gmail.com
Date:     2009-07-01 16:51:15 -0700 (Wed, 01 Jul 2009)
Log Message:
-----------
Tagged failing examples.

Modified Paths:
--------------
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/divmod_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/exponent_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/modulo_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/quo_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/divmod_tags.txt

Added Paths:
-----------
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exist_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exists_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/modulo_tags.txt

Added: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exist_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exist_tags.txt	                        (rev 0)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exist_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -0,0 +1 @@
+fails:Dir.exist? expands paths

Added: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exists_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exists_tags.txt	                        (rev 0)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/dir/exists_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -0,0 +1 @@
+fails:Dir.exists? expands paths

Modified: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/divmod_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/divmod_tags.txt	2009-07-01 23:50:52 UTC (rev 1966)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/divmod_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -1,2 +1,3 @@
 fails:Fixnum#divmod raises a FloatDomainError when the given argument is 0 and a Float
 fails:Fixnum#divmod raises a TypeError when given a non-Integer
+fails:Fixnum#divmod raises a ZeroDivisionError when the given argument is 0 and a Float

Modified: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/exponent_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/exponent_tags.txt	2009-07-01 23:50:52 UTC (rev 1966)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/exponent_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -1,3 +1,4 @@
 fails:Fixnum#** returns self raised to the given power
 fails:Fixnum#** returns Infinity for 0**-1
 fails:Fixnum#** raises a TypeError when given a non-Integer
+fails:Fixnum#** raises a ZeroDivisionError for 0**-1

Modified: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/modulo_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/modulo_tags.txt	2009-07-01 23:50:52 UTC (rev 1966)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/modulo_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -1,2 +1,4 @@
 fails:Fixnum#% raises a TypeError when given a non-Integer
 fails:Fixnum#modulo raises a TypeError when given a non-Integer
+fails:Fixnum#% raises a ZeroDivisionError when the given argument is 0 and a Float
+fails:Fixnum#modulo raises a ZeroDivisionError when the given argument is 0 and a Float

Modified: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/quo_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/quo_tags.txt	2009-07-01 23:50:52 UTC (rev 1966)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/fixnum/quo_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -2,3 +2,4 @@
 fails:Fixnum#quo does not raise a ZeroDivisionError when the given Integer is 0
 fails:Fixnum#quo does not raise a FloatDomainError when the given Integer is 0 and a Float
 fails:Fixnum#quo raises a TypeError when given a non-Integer
+fails:Fixnum#quo raises a ZeroDivisionError when the given Integer is 0

Modified: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/divmod_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/divmod_tags.txt	2009-07-01 23:50:52 UTC (rev 1966)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/divmod_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -1 +1 @@
-fails:Float#divmod raises FloatDomainError if other is zero
\ No newline at end of file
+fails:Float#divmod raises a ZeroDivisionError if other is zero

Added: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/modulo_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/modulo_tags.txt	                        (rev 0)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/float/modulo_tags.txt	2009-07-01 23:51:15 UTC (rev 1967)
@@ -0,0 +1,2 @@
+fails:Float#% raises a ZeroDivisionError if other is zero
+fails:Float#modulo raises a ZeroDivisionError if other is zero
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090701/af2bbedf/attachment.html>


More information about the macruby-changes mailing list