summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/attribute/to_string_spec.rb
blob: 420913afeb82fb0397282e131b38f847892ca394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../../../spec_helper'
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