mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
21 lines
791 B
Ruby
21 lines
791 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
require 'cgi'
|
||
|
|
||
|
describe "CGI.escapeElement when passed String, elements, ..." do
|
||
|
it "escapes only the tags of the passed elements in the passed String" do
|
||
|
res = CGI.escapeElement('<BR><A HREF="url"></A>', "A", "IMG")
|
||
|
res.should == "<BR><A HREF="url"></A>"
|
||
|
|
||
|
res = CGI.escapeElement('<BR><A HREF="url"></A>', ["A", "IMG"])
|
||
|
res.should == "<BR><A HREF="url"></A>"
|
||
|
end
|
||
|
|
||
|
it "is case-insensitive" do
|
||
|
res = CGI.escapeElement('<BR><A HREF="url"></A>', "a", "img")
|
||
|
res.should == '<BR><A HREF="url"></A>'
|
||
|
|
||
|
res = CGI.escapeElement('<br><a href="url"></a>', "A", "IMG")
|
||
|
res.should == '<br><a href="url"></a>'
|
||
|
end
|
||
|
end
|