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 returns a US-ASCII string for an empty Array
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 does not taint the result if the Array is tainted but 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 does not untrust the result if the Array is untrusted but 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 does not taint the result if the array is empty
fails:Array#join with a tainted separator does not taint the result if the array has only one element
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 does not untrust the result if the array is empty
fails:Array#join with an untrusted separator does not untrust the result if the array has only one element
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
