summaryrefslogtreecommitdiff
path: root/spec/unit/compliance
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/compliance')
-rw-r--r--spec/unit/compliance/fetcher/automate_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/unit/compliance/fetcher/automate_spec.rb b/spec/unit/compliance/fetcher/automate_spec.rb
index bc2125aaa7..f3554b8b0f 100644
--- a/spec/unit/compliance/fetcher/automate_spec.rb
+++ b/spec/unit/compliance/fetcher/automate_spec.rb
@@ -21,6 +21,14 @@ describe Chef::Compliance::Fetcher::Automate do
expect(res.target).to eq(expected)
end
+ it "should resolve a compliance URL with a @ in the namespace" do
+ res = Chef::Compliance::Fetcher::Automate.resolve("compliance://name@space/profile_name")
+
+ expect(res).to be_kind_of(Chef::Compliance::Fetcher::Automate)
+ expected = "https://automate.test/compliance/profiles/name@space/profile_name/tar"
+ expect(res.target).to eq(expected)
+ end
+
it "raises an exception with no data collector token" do
Chef::Config[:data_collector].delete(:token)