File: //usr/local/rvm/src/ruby-2.6.8/spec/ruby/library/rexml/text/read_with_substitution_spec.rb
require_relative '../../../spec_helper'
require 'rexml/document'
describe "REXML::Text.read_with_substitution" do
it "reads a text and escapes entities" do
REXML::Text.read_with_substitution("< > & " '").should == "< > & \" '"
end
it "accepts an regex for invalid expressions and raises an error if text matches" do
lambda {REXML::Text.read_with_substitution("this is illegal", /illegal/)}.should raise_error(Exception)
end
end