spec/ground-control/smoke-test.rb in logical-construct-0.0.5 vs spec/ground-control/smoke-test.rb in logical-construct-0.1.0

- old
+ new

@@ -1,19 +1,20 @@ require 'logical-construct/ground-control' +require 'mattock/testing/rake-example-group' module LogicalConstruct::GroundControl describe "An example Rakefile" do + include Mattock::RakeExampleGroup + include LogicalConstruct::GroundControl before :each do - extend LogicalConstruct::GroundControl - core = Core.new - setup = Setup.new(core) - setup.default_subtasks - - provision = Provision.new(core) do |prov| - prov.marshalling_path = "marshall" + namespace :example do + provision = Provision.new + provision.plans("test") end + + tools = Tools.new end it "should load without error" do true.should be_true #oo be doo be doo end