lib/berkshelf/commands/test_command.rb in berkshelf-5.5.0 vs lib/berkshelf/commands/test_command.rb in berkshelf-5.6.0

- old
+ new

@@ -1,13 +1,13 @@ begin - require 'kitchen/cli' + require "kitchen/cli" rescue LoadError; end module Berkshelf class TestCommand < Kitchen::CLI namespace "test" end class Cli < Thor - register(Berkshelf::TestCommand, 'test', 'test [COMMAND]', 'Testing tasks for your cookbook', hide: true) + register(Berkshelf::TestCommand, "test", "test [COMMAND]", "Testing tasks for your cookbook", hide: true) end end if defined?(Kitchen::CLI)