File tree 6 files changed +9
-6
lines changed
6 files changed +9
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 23
23
fails "String#start_with? converts its argument using :to_str"
24
24
fails "String#end_with? converts its argument using :to_str"
25
25
fails "String#end_with? returns true if other is empty"
26
+ fails "String#downcase is locale insensitive (only replaces A-Z)"
27
+ fails "String#intern does not special case certain operators"
28
+ fails "String#to_sym does not special case certain operators"
26
29
end
Original file line number Diff line number Diff line change 8
8
fails "String#reverse! raises a RuntimeError on a frozen instance that would not be modified"
9
9
fails "String#reverse! raises a RuntimeError on a frozen instance that is modified"
10
10
fails "String#reverse! reverses self in place and always returns self"
11
+ fails "String#downcase! raises a RuntimeError when self is frozen"
12
+ fails "String#downcase! returns nil if no modifications were made"
13
+ fails "String#downcase! modifies self in place"
11
14
end
Original file line number Diff line number Diff line change 1
1
opal_filter "String subclasses" do
2
2
fails "String#upcase returns a subclass instance for subclasses"
3
3
fails "String#swapcase returns subclass instances when called on a subclass"
4
+ fails "String#downcase returns a subclass instance for subclasses"
4
5
end
Original file line number Diff line number Diff line change 49
49
fails "String#reverse taints the result if self is tainted"
50
50
51
51
fails "Pathname.new is tainted if path is tainted"
52
+ fails "String#downcase taints result when self is tainted"
52
53
end
Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ core/matchdata/to_a_spec
224
224
core/range/begin_spec
225
225
core/range/end_spec
226
226
227
+ core/string/downcase_spec
227
228
core/string/empty_spec
228
229
core/string/end_with_spec
229
230
core/string/include_spec
You can’t perform that action at this time.
0 commit comments