summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/text/read_with_substitution_spec.rb
blob: 4bf54c1b3136db9b382e87122cd4cdbb9d103ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../../spec_helper'

ruby_version_is ''...'2.8' do
  require 'rexml/document'

  describe "REXML::Text.read_with_substitution" do
    it "reads a text and escapes entities" do
      REXML::Text.read_with_substitution("&lt; &gt; &amp; &quot; &apos;").should == "< > & \" '"
    end

    it "accepts an regex for invalid expressions and raises an error if text matches" do
      -> {REXML::Text.read_with_substitution("this is illegal", /illegal/)}.should raise_error(Exception)
    end
  end
end