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

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

  describe "REXML::Attribute#to_string" do
    it "returns the attribute as XML" do
      attr = REXML::Attribute.new("name", "value")
      attr_empty = REXML::Attribute.new("name")
      attr_ns = REXML::Attribute.new("xmlns:ns", "http://uri")

      attr.to_string.should == "name='value'"
      attr_empty.to_string.should == "name=''"
      attr_ns.to_string.should == "xmlns:ns='http://uri'"
    end
  end
end