⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (531 Bytes)
Bug #13671
» test.rb
Same test program as in the description -
dschweisguth (Dave Schweisguth)
, 06/22/2017 11:18 PM
def
test
(
description
)
begin
yield
puts
"
#{
description
}
is OK"
rescue
RegexpError
puts
"
#{
description
}
raises RegexpError"
end
end
test
(
"ass, case-insensitive, special"
)
{
/(?<!ass)/i
=~
'✨'
}
test
(
"bss, case-insensitive, special"
)
{
/(?<!bss)/i
=~
'✨'
}
test
(
"as, case-insensitive, special"
)
{
/(?<!as)/i
=~
'✨'
}
test
(
"ss, case-insensitive, special"
)
{
/(?<!ss)/i
=~
'✨'
}
test
(
"ass, case-sensitive, special"
)
{
/(?<!ass)/
=~
'✨'
}
test
(
"ass, case-insensitive, regular"
)
{
/(?<!ass)/i
=~
'x'
}
(1-1/1)
Loading...