|
11 | 11 | fails "String#downcase! raises a RuntimeError when self is frozen"
|
12 | 12 | fails "String#downcase! returns nil if no modifications were made"
|
13 | 13 | fails "String#downcase! modifies self in place"
|
| 14 | + fails "String#capitalize! raises a RuntimeError when self is frozen" |
| 15 | + fails "String#capitalize! returns nil when no changes are made" |
| 16 | + fails "String#capitalize! capitalizes self in place" |
| 17 | + fails "String#chomp! when passed a String does not taint the result when the argument is tainted" |
| 18 | + fails "String#chomp! when passed a String taints the result if self is tainted" |
| 19 | + fails "String#chomp! when passed a String returns nil when self is empty" |
| 20 | + fails "String#chomp! when passed a String returns nil if the argument does not match the trailing characters" |
| 21 | + fails "String#chomp! when passed a String removes the trailing characters if they match the argument" |
| 22 | + fails "String#chomp! when passed an Object raises a TypeError if #to_str does not return a String" |
| 23 | + fails "String#chomp! when passed an Object calls #to_str to convert to a String" |
| 24 | + fails "String#chomp! when passed '\\n' returns nil when self is empty" |
| 25 | + fails "String#chomp! when passed '\\n' taints the result if self is tainted" |
| 26 | + fails "String#chomp! when passed '\\n' removes one trailing carrige return, newline pair" |
| 27 | + fails "String#chomp! when passed '\\n' removes one trailing carriage return" |
| 28 | + fails "String#chomp! when passed '\\n' removes one trailing newline" |
| 29 | + fails "String#chomp! when passed '' returns nil when self is empty" |
| 30 | + fails "String#chomp! when passed '' taints the result if self is tainted" |
| 31 | + fails "String#chomp! when passed '' removes more than one trailing carriage return, newline pairs" |
| 32 | + fails "String#chomp! when passed '' removes more than one trailing newlines" |
| 33 | + fails "String#chomp! when passed '' does not remove a final carriage return" |
| 34 | + fails "String#chomp! when passed '' removes a final carriage return, newline" |
| 35 | + fails "String#chomp! when passed '' removes a final newline" |
| 36 | + fails "String#chomp! when passed nil returns nil when self is empty" |
| 37 | + fails "String#chomp! when passed nil returns nil" |
| 38 | + fails "String#chomp! when passed no argument removes trailing characters that match $/ when it has been assigned a value" |
| 39 | + fails "String#chomp! when passed no argument returns subclass instances when called on a subclass" |
| 40 | + fails "String#chomp! when passed no argument taints the result if self is tainted" |
| 41 | + fails "String#chomp! when passed no argument returns nil when self is empty" |
| 42 | + fails "String#chomp! when passed no argument removes one trailing carrige return, newline pair" |
| 43 | + fails "String#chomp! when passed no argument removes one trailing carriage return" |
| 44 | + fails "String#chomp! when passed no argument removes one trailing newline" |
| 45 | + fails "String#chomp! when passed no argument returns nil if self is not modified" |
| 46 | + fails "String#chomp! when passed no argument modifies self" |
| 47 | + fails "String#chomp! raises a RuntimeError on a frozen instance when it would not be modified" |
| 48 | + fails "String#chomp! raises a RuntimeError on a frozen instance when it is modified" |
14 | 49 | end
|
0 commit comments