Implement `mkdir' task action

This commit is contained in:
Thibault Jouan
2014-01-21 15:50:07 +00:00
parent f147ce7d65
commit 7f5d1a4085
9 changed files with 75 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ module Producer::Core
let(:env) { Env.new }
subject(:dsl) { Task::DSL.new(env, &block) }
%w[echo sh file_write].each do |action|
%w[echo sh mkdir file_write].each do |action|
it "has `#{action}' action defined" do
expect(dsl).to respond_to action.to_sym
end