describe do
before :each do
@e = REXML::Element.new
@attr = REXML::Attribute.new(, )
end
it do
@e.add_attribute(@attr)
@e.attributes[].should_not == nil
@attr.remove
@e.attributes[].should == nil
end
it do
lambda {@attr.remove}.should_not raise_error(Exception)
end
end