require File.join(__FILE__.gsub(/(.*)?\/spec\/.*$/, '\1'), 'spec/spec_helper') describe Rtml::Dom::Element do before(:each) do @ele = Rtml::Dom::Element.new end it "should never create two properties with the same name" do @ele.property :name, "test" @ele.property :name, "test" @ele.properties.should have(1).item end end