require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper') include Fathom::Distributions class DemoEnforcedNameNode < Node include EnforcedName end describe EnforcedName do it "should ensure that we have a name as a UID if one is not provided" do n = DemoEnforcedNameNode.new n.name.should_not be_nil end end