summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-01-07 14:18:44 -0800
committerJohn Keiser <john@johnkeiser.com>2016-01-13 09:23:07 -0800
commit6d9c8b03466632b3cd11042a2b99a08ae5047309 (patch)
tree0bbff68a54b99e7f6f70819783a75bc9967093d1 /spec/unit
parent5e5cbe6df61ae69b9a5942ce51a7ad1f8bb6ea3a (diff)
downloadchef-6d9c8b03466632b3cd11042a2b99a08ae5047309.tar.gz
Move server and repository fs objects to their own directories
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/chef_fs/file_system/cookbook_subdir_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/chef_fs/file_system/cookbook_subdir_spec.rb b/spec/unit/chef_fs/file_system/cookbook_subdir_spec.rb
index 94a636fc0a..b98ec12161 100644
--- a/spec/unit/chef_fs/file_system/cookbook_subdir_spec.rb
+++ b/spec/unit/chef_fs/file_system/cookbook_subdir_spec.rb
@@ -17,15 +17,15 @@
#
require 'spec_helper'
-require 'chef/chef_fs/file_system/cookbook_subdir'
+require 'chef/chef_fs/file_system/chef_server/cookbook_subdir'
-describe Chef::ChefFS::FileSystem::CookbookSubdir do
+describe Chef::ChefFS::FileSystem::ChefServer::CookbookSubdir do
let(:root) do
Chef::ChefFS::FileSystem::BaseFSDir.new('', nil)
end
let(:cookbook_subdir) do
- Chef::ChefFS::FileSystem::CookbookSubdir.new('test', root, false, true)
+ Chef::ChefFS::FileSystem::ChefServer::CookbookSubdir.new('test', root, false, true)
end
it 'can get child' do