Skip to content

Commit

Permalink
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/tags/ruby/core/kernel/eval_tags.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
fails:Kernel#eval allows a binding to be captured inside an eval
fails:Kernel#eval raises a LocalJumpError if there is no lambda-style closure in the chain
fails:Kernel#eval unwinds through a Proc-style closure and returns from a lambda-style closure in the closure chain
fails:Kernel#eval returns from the scope calling #eval when evaluating 'return'
1 change: 1 addition & 0 deletions spec/tags/ruby/core/kernel/require_tags.txt
Original file line number Diff line number Diff line change
@@ -8,3 +8,4 @@ fails:Kernel#require (path resolution) does not load a bare filename unless the
fails:Kernel.require (path resolution) does not load a bare filename unless the current working directory is in $LOAD_PATH
fails:Kernel#require (path resolution) does not load a relative path unless the current working directory is in $LOAD_PATH
fails:Kernel.require (path resolution) does not load a relative path unless the current working directory is in $LOAD_PATH
fails:Kernel.require (concurrently) allows a 2nd require if the 1st raised an exception
1 change: 1 addition & 0 deletions spec/tags/ruby/core/marshal/load_tags.txt
Original file line number Diff line number Diff line change
@@ -15,3 +15,4 @@ fails:Marshal.load when a class does not exist in the namespace raises an Argume
fails:Marshal.load when called on objects with custom _dump methods that return an immediate value loads an array containing an instance of the object, followed by multiple instances of another object
fails:Marshal.load when called on objects with custom _dump methods that return an immediate value loads any structure with multiple references to the same object, followed by multiple instances of another object
fails:Marshal.load when called on objects with custom _dump methods that return an immediate value loads an array containing references to multiple instances of the object, followed by multiple instances of another object
fails:Marshal.load for a wrapped C pointer raises TypeError when the local class is missing _load_data
1 change: 1 addition & 0 deletions spec/tags/ruby/core/marshal/restore_tags.txt
Original file line number Diff line number Diff line change
@@ -15,3 +15,4 @@ fails:Marshal.restore when a class does not exist in the namespace raises an Arg
fails:Marshal.restore when called on objects with custom _dump methods that return an immediate value loads an array containing an instance of the object, followed by multiple instances of another object
fails:Marshal.restore when called on objects with custom _dump methods that return an immediate value loads any structure with multiple references to the same object, followed by multiple instances of another object
fails:Marshal.restore when called on objects with custom _dump methods that return an immediate value loads an array containing references to multiple instances of the object, followed by multiple instances of another object
fails:Marshal.restore for a wrapped C pointer raises TypeError when the local class is missing _load_data
1 change: 1 addition & 0 deletions spec/tags/ruby/core/method/call_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails:Method#call for a Method generated by respond_to_missing? does not call the original method name even if it now exists
1 change: 1 addition & 0 deletions spec/tags/ruby/core/method/element_reference_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails:Method#[] for a Method generated by respond_to_missing? does not call the original method name even if it now exists
1 change: 1 addition & 0 deletions spec/tags/ruby/language/class_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails:A class definition extending an object (sclass) can use return to cause the enclosing method to return

0 comments on commit b444178

Please sign in to comment.