-
-
Notifications
You must be signed in to change notification settings - Fork 922
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into truffle-head
- Loading branch information
Showing
7 changed files
with
53 additions
and
80 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,20 +1 @@ | ||
fails:Array#join returns a string formed by concatenating each element.to_str separated by separator | ||
fails:Array#join uses the same separator with nested arrays | ||
fails:Array#join attempts coercion via #to_str first | ||
fails:Array#join attempts coercion via #to_ary second | ||
fails:Array#join attempts coercion via #to_s third | ||
fails:Array#join raises a NoMethodError if an element does not respond to #to_str, #to_ary, or #to_s | ||
fails:Array#join taints the result if the Array is tainted and non-empty | ||
fails:Array#join taints the result if the result of coercing an element is tainted | ||
fails:Array#join untrusts the result if the Array is untrusted and non-empty | ||
fails:Array#join untrusts the result if the result of coercing an element is untrusted | ||
fails:Array#join uses the first encoding when other strings are compatible | ||
fails:Array#join fails for arrays with incompatibly-encoded strings | ||
fails:Array#join does not separate elements when the passed separator is nil | ||
fails:Array#join calls #to_str to convert the separator to a String | ||
fails:Array#join does not call #to_str on the separator if the array is empty | ||
fails:Array#join with a tainted separator taints the result if the array has two or more elements | ||
fails:Array#join with an untrusted separator untrusts the result if the array has two or more elements | ||
fails:Array#join with $, separates elements with default separator when the passed separator is nil | ||
fails:Array#join raises an ArgumentError when the Array is recursive | ||
fails:Array#join uses the widest common encoding when other strings are incompatible |
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
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