lib/testlab/node.rb in testlab-1.0.1 vs lib/testlab/node.rb in testlab-1.1.0

- old
+ new

@@ -13,20 +13,24 @@ autoload :Actions, 'testlab/node/actions' autoload :ClassMethods, 'testlab/node/class_methods' autoload :Lifecycle, 'testlab/node/lifecycle' autoload :LXC, 'testlab/node/lxc' autoload :MethodMissing, 'testlab/node/method_missing' + autoload :Provision, 'testlab/node/provision' autoload :SSH, 'testlab/node/ssh' autoload :Status, 'testlab/node/status' include TestLab::Node::Actions include TestLab::Node::Lifecycle include TestLab::Node::LXC include TestLab::Node::MethodMissing + include TestLab::Node::Provision include TestLab::Node::SSH include TestLab::Node::Status extend TestLab::Node::ClassMethods + + include TestLab::Support::Execution include TestLab::Utility::Misc # Associations and Attributes belongs_to :labfile, :class_name => 'TestLab::Labfile'