Revision: 3812 http://trac.macosforge.org/projects/ruby/changeset/3812 Author: lsansonetti@apple.com Date: 2010-03-18 16:06:28 -0700 (Thu, 18 Mar 2010) Log Message: ----------- untag specs that now pass Modified Paths: -------------- MacRuby/trunk/spec/frozen/tags/macruby/core/integer/chr_tags.txt Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/integer/chr_tags.txt =================================================================== --- MacRuby/trunk/spec/frozen/tags/macruby/core/integer/chr_tags.txt 2010-03-18 23:06:14 UTC (rev 3811) +++ MacRuby/trunk/spec/frozen/tags/macruby/core/integer/chr_tags.txt 2010-03-18 23:06:28 UTC (rev 3812) @@ -1,12 +1,9 @@ -critical:Integer#chr raises a RangeError if self is out of the ASCII character range -fails:Integer#chr without argument returns a US-ASCII String if self is between 0 and 127 (inclusive) fails:Integer#chr without argument interprets self as a codepoint in the corresponding character set fails:Integer#chr without argument raises a RangeError is self is greater than 255 and the internal encoding is nil fails:Integer#chr without argument infers the encoding from Encoding.default_internal -fails:Integer#chr with an encoding argument returns a String -fails:Integer#chr with an encoding argument converts a String to an Encoding as Encoding.find does -fails:Integer#chr with an encoding argument returns characters in the specified encoding even if they exist in US-ASCII fails:Integer#chr with an encoding argument behaves as called with no argument if encoding is specified as ASCII-8BIT and self is between 128 and 255 fails:Integer#chr with an encoding argument interprets self as a codepoint in the corresponding character set fails:Integer#chr with an encoding argument raises a RangeError if self is an invalid codepoint for the given encoding fails:Integer#chr with an encoding argument raises a RangeError is self is less than 0 +fails:Integer#chr with an encoding argument accepts an Encoding object as an argument +fails:Integer#chr with an encoding argument accepts a String as an argument