summaryrefslogtreecommitdiff
path: root/spec/ruby/language/string_spec.rb
diff options
context:
space:
mode:
-rw-r--r--spec/ruby/language/string_spec.rb28
1 files changed, 15 insertions, 13 deletions
@@ -51,24 +51,26 @@ describe "Ruby character strings" do
"#\$".should == '#$'
end
- it "taints the result of interpolation when an interpolated value is tainted" do
- "#{"".taint}".tainted?.should be_true
- @ip.taint
- "#@ip".tainted?.should be_true
- $ip.taint
- "#$ip".tainted?.should be_true
- end
- it "untrusts the result of interpolation when an interpolated value is untrusted" do
- "#{"".untrust}".untrusted?.should be_true
- @ip.untrust
- "#@ip".untrusted?.should be_true
- $ip.untrust
- "#$ip".untrusted?.should be_true
end
it "allows using non-alnum characters as string delimiters" do