Fix coding standards in specs (parenthesis usage)

This commit is contained in:
Thibault Jouan
2013-08-22 00:22:37 +00:00
parent a555df40c6
commit 782c8f8498
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ module Producer::Core
describe Task::DSL do
let(:block) { proc { } }
let(:env) { double('env') }
subject(:dsl) { Task::DSL.new &block }
subject(:dsl) { Task::DSL.new(&block) }
%w[echo sh].each do |action|
it "has `#{action}' action defined" do