Merge pull request #219 from chef/fix-shell

bugfix: correct add_content call to new param structure
This commit is contained in:
Christoph Hartmann 2015-11-05 18:37:26 +01:00
commit ed39d30f1d

View file

@ -13,7 +13,8 @@ module Inspec
def start
# store context to run commands in this context
@runner.add_content('binding.pry', __FILE__, __LINE__)
@runner.add_content({
content: 'binding.pry', ref: __FILE__, line: __LINE__}, [])
@runner.run
end