summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/delete_namespace_spec.rb
blob: 8683a40cab7f38f1944c72ae9075ef88458a97ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rexml/document'
require_relative '../../../spec_helper'

describe "REXML::Element#delete_namespace" do

  before :each do
    @doc = REXML::Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>"
  end

  it "deletes a namespace from the element" do
    @doc.root.delete_namespace 'foo'
    @doc.root.namespace("foo").should be_nil
    @doc.root.to_s.should == "<a xmlns='twiddle'/>"
  end

  it "deletes default namespace when called with no args" do
    @doc.root.delete_namespace
    @doc.root.namespace.should be_empty
    @doc.root.to_s.should == "<a xmlns:foo='bar'/>"
  end

  it "returns the element" do
    @doc.root.delete_namespace.should == @doc.root
  end
end