-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
- 9.1.5.0
- 9.1.4.0
- 9.1.3.0
- 9.1.2.0
- 9.1.1.0
- 9.1.0.0
1 parent
6b1da3a
commit 352e22e
Showing
31 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
slow:ARGF.close does not close STDIN | ||
fails:ARGF.close does not close STDIN | ||
fails:ARGF.close doesn't raise an IOError if called on a closed stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
fails:Array#bsearch_index raises a TypeError when block returns a String | ||
fails:Array#bsearch_index returns nil when block is empty | ||
fails:Array#bsearch_index when not passed a block returns an Enumerator | ||
fails:Array#bsearch_index when not passed a block returns an Enumerator with unknown size | ||
fails:Array#bsearch_index when not passed a block returns index of element when block condition is satisfied | ||
fails:Array#bsearch_index minimum mode returns index of first element which satisfies the block | ||
fails:Array#bsearch_index minimum mode returns nil when block condition is never satisfied | ||
fails:Array#bsearch_index find any mode returns the index of any matched elements where element is between 4 <= x < 8 | ||
fails:Array#bsearch_index find any mode returns the index of any matched elements where element is between 8 <= x < 10 | ||
fails:Array#bsearch_index find any mode returns nil when block never returns 0 | ||
fails:Array#bsearch_index find any mode returns the middle element when block always returns zero | ||
fails:Array#bsearch_index find any mode magnitude does not effect the result returns the index of any matched elements where element is between 4n <= xn < 8n | ||
fails:Array#bsearch_index find any mode magnitude does not effect the result returns nil when block never returns 0 | ||
fails:Array#bsearch_index find any mode magnitude does not effect the result handles values from Bignum#coerce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
fails:Array#dig returns #at with one arg | ||
fails:Array#dig recurses array elements | ||
fails:Array#dig raises without any args | ||
fails:Array#dig calls #dig on the result of #at with the remaining arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Array#inspect with encoding raises if inspected result is not default external encoding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Array#to_s with encoding raises if inspected result is not default external encoding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fails:Comparable#== when #<=> returns nor nil neither an Integer raises an ArgumentError | ||
fails:Comparable#== when #<=> raises an exception if it is a StandardError lets it go through | ||
fails:Comparable#== when #<=> raises an exception if it is a subclass of StandardError lets it go through |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#chunk does not accept arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Enumerable#chunk_while when given a block returns an enumerator | ||
fails:Enumerable#chunk_while when given a block splits chunks between adjacent elements i and j where the block returns false | ||
fails:Enumerable#chunk_while when given a block calls the block for length of the receiver enumerable minus one times | ||
fails:Enumerable#chunk_while when not given a block raises an ArgumentError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#grep with a block raises an ArgumentError when not given a pattern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fails:Enumerable#grep_v without block returns an Array of matched elements | ||
fails:Enumerable#grep_v without block compares pattern with gathered array when yielded with multiple arguments | ||
fails:Enumerable#grep_v without block raises an ArgumentError when not given a pattern | ||
fails:Enumerable#grep_v with block returns an Array of matched elements that mapped by the block | ||
fails:Enumerable#grep_v with block calls the block with gathered array when yielded with multiple arguments | ||
fails:Enumerable#grep_v with block raises an ArgumentError when not given a pattern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#slice_before when given a block does not accept arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fails:NameError#name returns the first argument passed to the method when a NameError is raised from #instance_variable_get | ||
fails:NameError#name returns the first argument passed to the method when a NameError is raised from #class_variable_get |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
fails:NameError#receiver returns the object that raised the exception | ||
fails:NameError#receiver returns the Object class when an undefined constant is called without namespace | ||
fails:NameError#receiver returns a class when an undefined constant is called | ||
fails:NameError#receiver returns the Object class when an undefined class variable is called | ||
fails:NameError#receiver returns a class when an undefined class variable is called in a subclass' namespace | ||
fails:NameError#receiver returns the receiver when raised from #instance_variable_get | ||
fails:NameError#receiver returns the receiver when raised from #class_variable_get | ||
fails:NameError#receiver raises an ArgumentError when the receiver is none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Hash#fetch_values with matched keys returns the values for keys | ||
fails:Hash#fetch_values with unmatched keys raises a KeyError | ||
fails:Hash#fetch_values with unmatched keys returns the default value from block | ||
fails:Hash#fetch_values without keys returns an empty Array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Hash#> returns false when receiver size is smaller than argument | ||
fails:Hash#> returns false when receiver size is the same as argument | ||
fails:Hash#> returns true when argument is a subset of receiver | ||
fails:Hash#> returns false when keys match but values don't |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Hash#>= returns false when receiver size is smaller than argument | ||
fails:Hash#>= returns false when argument is not a subset or not equals to receiver | ||
fails:Hash#>= returns true when argument is a subset of receiver or equals to receiver | ||
fails:Hash#>= returns false when keys match but values don't |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Hash#< returns false when receiver size is larger than argument | ||
fails:Hash#< returns false when receiver size is the same as argument | ||
fails:Hash#< returns true when receiver is a subset of argument | ||
fails:Hash#< returns false when keys match but values don't |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Hash#<= returns false when receiver size is larger than argument | ||
fails:Hash#<= returns false when receiver size is the same as argument | ||
fails:Hash#<= returns true when receiver is a subset of argument or equals to argument | ||
fails:Hash#<= returns false when keys match but values don't |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fails:Hash#to_proc returns an instance of Proc | ||
fails:Hash#to_proc the returned proc with a stored key returns the paired value | ||
fails:Hash#to_proc the returned proc with no stored key returns nil | ||
fails:Hash#to_proc the returned proc with no stored key when the hash has a default value returns the default value | ||
fails:Hash#to_proc the returned proc with no stored key when the hash has a default proc returns an evaluated value from the default proc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
fails:IO#close on an IO.popen stream clears #pid | ||
fails:IO#close on an IO.popen stream sets $? | ||
fails:IO#close on an IO.popen stream waits for the child to exit | ||
fails:IO#close does not raise anything when self was already closed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Kernel.loop returns StopIteration#result, the result value of a finished iterator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fails:Module#deprecate_constant accepts multiple symbols and strings as constant names | ||
fails:Module#deprecate_constant returns self | ||
fails:Module#deprecate_constant raises a NameError when given an undefined name | ||
fails:Module#deprecate_constant when accessing the deprecated module passes the accessing | ||
fails:Module#deprecate_constant when accessing the deprecated module warns with a message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fails:Numeric#negative? on positive numbers returns false | ||
fails:Numeric#negative? on zero returns false | ||
fails:Numeric#negative? on negative numbers returns true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fails:Numeric#positive? on positive numbers returns true | ||
fails:Numeric#positive? on zero returns false | ||
fails:Numeric#positive? on negative numbers returns false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
fails:ObjectSpace.each_object doesn't find an object stored in a WeakRef that should have been cleared | ||
fails:ObjectSpace.each_object walks a class and its normal descendants when passed the class's singleton class | ||
fails:ObjectSpace.each_object on singleton classes walks singleton classes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fails:Thread#name is nil initially | ||
fails:Thread#name returns the thread name | ||
fails:Thread#name= can be set to a String | ||
fails:Thread#name= raises an ArgumentError if the name includes a null byte | ||
fails:Thread#name= can be reset to nil |