Skip to content

Commit a8a216f

Browse files
committedOct 30, 2013
Add some more specs from rubyspec and fix last push
1 parent be46c47 commit a8a216f

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed
 

‎spec/corelib/string/downcase_spec.rb

-6
This file was deleted.

‎spec/filters/bugs/string.rb

+3
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,7 @@
2323
fails "String#start_with? converts its argument using :to_str"
2424
fails "String#end_with? converts its argument using :to_str"
2525
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"
2629
end

‎spec/filters/unsupported/mutable_strings.rb

+3
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@
88
fails "String#reverse! raises a RuntimeError on a frozen instance that would not be modified"
99
fails "String#reverse! raises a RuntimeError on a frozen instance that is modified"
1010
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"
1114
end
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
opal_filter "String subclasses" do
22
fails "String#upcase returns a subclass instance for subclasses"
33
fails "String#swapcase returns subclass instances when called on a subclass"
4+
fails "String#downcase returns a subclass instance for subclasses"
45
end

‎spec/filters/unsupported/tainted.rb

+1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@
4949
fails "String#reverse taints the result if self is tainted"
5050

5151
fails "Pathname.new is tainted if path is tainted"
52+
fails "String#downcase taints result when self is tainted"
5253
end

‎spec/rubyspecs

+1
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ core/matchdata/to_a_spec
224224
core/range/begin_spec
225225
core/range/end_spec
226226

227+
core/string/downcase_spec
227228
core/string/empty_spec
228229
core/string/end_with_spec
229230
core/string/include_spec

0 commit comments

Comments
 (0)
Please sign in to comment.