Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
0 additions
and 44 deletions.
- +0 −8 spec/truffle/tags/core/exception/backtrace_tags.txt
- +0 −2 spec/truffle/tags/core/exception/equal_value_tags.txt
- +0 −7 spec/truffle/tags/core/exception/exception_tags.txt
- +0 −1 spec/truffle/tags/core/exception/message_tags.txt
- +0 −1 spec/truffle/tags/core/exception/name_error_tags.txt
- +0 −3 spec/truffle/tags/core/exception/new_tags.txt
- +0 −3 spec/truffle/tags/core/exception/no_method_error_tags.txt
- +0 −1 spec/truffle/tags/core/exception/range_error_tags.txt
- +0 −1 spec/truffle/tags/core/exception/readagain_bytes_tags.txt
- +0 −2 spec/truffle/tags/core/exception/result_tags.txt
- +0 −1 spec/truffle/tags/core/exception/script_error_tags.txt
- +0 −1 spec/truffle/tags/core/exception/signal_exception_tags.txt
- +0 −1 spec/truffle/tags/core/symbol/to_proc_tags.txt
- +0 −5 spec/truffle/tags/core/unboundmethod/bind_tags.txt
- +0 −7 spec/truffle/tags/core/unboundmethod/equal_value_tags.txt
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
@@ -1,10 +1,2 @@ | ||
fails:Exception#backtrace returns nil if no backtrace was set | ||
fails:Exception#backtrace when redefined does not affect the behaviour of Exception#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
@@ -1,10 +1,8 @@ | ||
fails:Exception#== returns true if one exception is the dup'd copy of the other | ||
fails:Exception#== returns true if both exceptions have the same class, no message, and no backtrace | ||
fails:Exception#== returns true if both exceptions have the same class, the same message, and no backtrace | ||
fails:Exception#== returns true if both exceptions have the same class, the same message, and the same backtrace | ||
fails:Exception#== returns false if the two exceptions inherit from Exception but have different classes | ||
fails:Exception#== returns true if the two objects subclass Exception and have the same message and backtrace | ||
fails:Exception#== returns false if the two exceptions differ only in their backtrace | ||
fails:Exception#== returns false if the two exceptions differ only in their 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
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
@@ -1,3 +1,2 @@ | ||
fails:Exception#message returns the class name if there is no message | ||
fails:Exception#message calls #to_s on self |
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
@@ -1,2 +1 @@ | ||
fails:NameError.new NameError.new should take optional name argument |
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
@@ -1,4 +1 @@ | ||
fails:Exception.new returns 'Exception' for message when no message given | ||
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
@@ -1,6 +1,3 @@ | ||
fails:NoMethodError.new allows passing method args | ||
fails:NoMethodError#args returns an empty array if the caller method had no arguments | ||
fails:NoMethodError#args returns an array with the same elements as passed to the method | ||
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
@@ -1,3 +1,2 @@ | ||
fails:ScriptError is a superclass of LoadError | ||
fails:ScriptError is a superclass of NotImplementedError | ||
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
@@ -1,2 +1 @@ | ||
fails:Symbol#to_proc raises an ArgumentError when calling #call on the Proc without receiver | ||
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
@@ -1,7 +1,2 @@ | ||
fails:UnboundMethod#bind raises TypeError if object is not kind_of? the Module the method defined in | ||
fails:UnboundMethod#bind will raise when binding a an object singleton's method to another object |
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
@@ -1,11 +1,4 @@ | ||
fails:UnboundMethod#== returns true if objects refer to the same method | ||
fails:UnboundMethod#== returns true if either is an alias for the other | ||
fails:UnboundMethod#== returns true if both are aliases for a third method | ||
fails:UnboundMethod#== returns true if same method is extracted from the same subclass | ||