summaryrefslogtreecommitdiff
path: root/chef-config/spec/unit
diff options
context:
space:
mode:
authorS.Cavallo <smcavallo@hotmail.com>2018-05-10 15:44:51 -0400
committerS.Cavallo <smcavallo@hotmail.com>2018-05-10 15:44:51 -0400
commit7703ef2581ea3b230d797d0c9362d76aa90930b4 (patch)
tree5abc8ba046622d2b8baebeaefff28a5c42eba863 /chef-config/spec/unit
parentc94f90370bf38020d7773f0226090a40f5fae75b (diff)
downloadchef-7703ef2581ea3b230d797d0c9362d76aa90930b4.tar.gz
refactoring to support inline tables
Signed-off-by: S.Cavallo <smcavallo@hotmail.com>
Diffstat (limited to 'chef-config/spec/unit')
-rw-r--r--chef-config/spec/unit/workstation_config_loader_spec.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/chef-config/spec/unit/workstation_config_loader_spec.rb b/chef-config/spec/unit/workstation_config_loader_spec.rb
index 9d294061c3..f8c04bb724 100644
--- a/chef-config/spec/unit/workstation_config_loader_spec.rb
+++ b/chef-config/spec/unit/workstation_config_loader_spec.rb
@@ -394,8 +394,11 @@ RSpec.describe ChefConfig::WorkstationConfigLoader do
node_name = 'barney'
client_key = "barney_rubble.pem"
chef_server_url = "https://api.chef.io/organizations/bedrock"
-"knife[:ssh_user]" = 'knife_ssh_user'
-"knife[:secret_file]" = "/home/barney/.chef/encrypted_data_bag_secret.pem"
+knife = {
+ secret_file = "/home/barney/.chef/encrypted_data_bag_secret.pem"
+}
+[default.knife]
+ssh_user = "knife_ssh_user"
EOH
content
end