summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/text/inspect_spec.rb
blob: 0d66088a6457b5a726c8be8ef1b6f4507ecaec08 (plain)
1
2
3
4
5
6
7
8
require_relative '../../../spec_helper'
require 'rexml/document'

describe "REXML::Text#inspect" do
  it "inspects the string attribute as a string" do
    REXML::Text.new("a text").inspect.should == "a text".inspect
  end
end