I have a manifest directory when I have some global resource settings that apply to select resources in my entire codebase. I have Rspec configured via c.manifest_dir and c.manifest, but when executing a spec test for a class that contains the interesting resources, they do not contain the expected global resource defaults -- as if the manifest_dir is not being evaluated prior to the class.
Debug output shows my class being loaded into rp_env prior to compilation, but no manifest directory.
I have a manifest directory when I have some global resource settings that apply to select resources in my entire codebase. I have Rspec configured via
c.manifest_dir
andc.manifest
, but when executing a spec test for a class that contains the interesting resources, they do not contain the expected global resource defaults -- as if themanifest_dir
is not being evaluated prior to the class.Debug output shows my class being loaded into
rp_env
prior to compilation, but no manifest directory.