lib/testlab/node.rb in testlab-1.13.0 vs lib/testlab/node.rb in testlab-1.14.0

- old
+ new

@@ -10,16 +10,18 @@ STATUS_KEYS = %w(id instance_id ok state user ip port provider provisioners).map(&:to_sym) # Sub-Modules autoload :Actions, 'testlab/node/actions' autoload :ClassMethods, 'testlab/node/class_methods' + autoload :Doctor, 'testlab/node/doctor' 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::Doctor include TestLab::Node::LXC include TestLab::Node::MethodMissing include TestLab::Node::Provision include TestLab::Node::SSH include TestLab::Node::Status