Fix a few coding standards issues:

* Remove extra empty lines before private keyword usages.

  specs:

  * Fix one long line;
  * use proc keyword instead of Proc.new.
This commit is contained in:
Thibault Jouan
2013-07-31 22:13:09 +00:00
parent fa2f55e516
commit 2acb57254f
5 changed files with 4 additions and 5 deletions

View File

@@ -49,7 +49,8 @@ module Producer::Core
describe '#evaluate_recipe_file' do
it 'builds a recipe' do
expect(Recipe).to receive(:from_file).with(arguments[1]).and_call_original
expect(Recipe)
.to receive(:from_file).with(arguments[1]).and_call_original
cli.evaluate_recipe_file
end