summaryrefslogtreecommitdiff
path: root/spec/unit/chef_fs/data_handler/group_handler_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/chef_fs/data_handler/group_handler_spec.rb')
-rw-r--r--spec/unit/chef_fs/data_handler/group_handler_spec.rb30
1 files changed, 15 insertions, 15 deletions
diff --git a/spec/unit/chef_fs/data_handler/group_handler_spec.rb b/spec/unit/chef_fs/data_handler/group_handler_spec.rb
index 6e71fa3b10..7cbd0e4c22 100644
--- a/spec/unit/chef_fs/data_handler/group_handler_spec.rb
+++ b/spec/unit/chef_fs/data_handler/group_handler_spec.rb
@@ -16,8 +16,8 @@
# limitations under the License.
#
-require 'spec_helper'
-require 'lib/chef/chef_fs/data_handler/group_data_handler'
+require "spec_helper"
+require "lib/chef/chef_fs/data_handler/group_data_handler"
class TestEntry < Mash
attr_accessor :name, :org
@@ -31,32 +31,32 @@ end
describe Chef::ChefFS::DataHandler::GroupDataHandler do
describe '#normalize_for_post' do
let(:entry) do
- TestEntry.new('workers.json', 'hive')
+ TestEntry.new("workers.json", "hive")
end
let(:group) do
- { 'name' => 'worker_bees',
- 'clients' => %w(honey sting),
- 'users' => %w(fizz buzz),
- 'actors' => %w(honey),
+ { "name" => "worker_bees",
+ "clients" => %w(honey sting),
+ "users" => %w(fizz buzz),
+ "actors" => %w(honey),
}
end
let(:normalized) do
- { 'actors' =>
- { 'users' => %w(fizz buzz),
- 'clients'=> %w(honey sting),
- 'groups'=> [],
+ { "actors" =>
+ { "users" => %w(fizz buzz),
+ "clients"=> %w(honey sting),
+ "groups"=> [],
},
- 'groupname' => 'workers',
- 'name' => 'worker_bees',
- 'orgname' => 'hive',
+ "groupname" => "workers",
+ "name" => "worker_bees",
+ "orgname" => "hive",
}
end
let(:handler) { described_class.new }
- it 'normalizes the users, clients and groups into actors' do
+ it "normalizes the users, clients and groups into actors" do
expect(handler.normalize_for_post(group, entry)).to eq(normalized)
end
end