mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@875a09e
This commit is contained in:
parent
a06301b103
commit
5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions
|
@ -48,7 +48,7 @@ describe "Regexps with escape characters" do
|
|||
/\x0AA/.match("\nA").to_a.should == ["\nA"]
|
||||
/\xAG/.match("\nG").to_a.should == ["\nG"]
|
||||
# Non-matches
|
||||
lambda { eval('/\xG/') }.should raise_error(SyntaxError)
|
||||
-> { eval('/\xG/') }.should raise_error(SyntaxError)
|
||||
|
||||
# \x{7HHHHHHH} wide hexadecimal char (character code point value)
|
||||
end
|
||||
|
@ -69,9 +69,9 @@ describe "Regexps with escape characters" do
|
|||
# Parsing precedence
|
||||
/\cJ+/.match("\n\n").to_a.should == ["\n\n"] # Quantifiers apply to entire escape sequence
|
||||
/\\cJ/.match("\\cJ").to_a.should == ["\\cJ"]
|
||||
lambda { eval('/[abc\x]/') }.should raise_error(SyntaxError) # \x is treated as a escape sequence even inside a character class
|
||||
-> { eval('/[abc\x]/') }.should raise_error(SyntaxError) # \x is treated as a escape sequence even inside a character class
|
||||
# Syntax error
|
||||
lambda { eval('/\c/') }.should raise_error(SyntaxError)
|
||||
-> { eval('/\c/') }.should raise_error(SyntaxError)
|
||||
|
||||
# \cx control char (character code point value)
|
||||
# \C-x control char (character code point value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue