We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ce661 commit 11d4703Copy full SHA for 11d4703
cookbooks/aws-parallelcluster-platform/spec/unit/recipes/cookbook_virtualenv_spec.rb
@@ -8,6 +8,11 @@
8
cached(:virtualenv_path) { 'system_pyenv_root/versions/python_version/envs/cookbook_virtualenv' }
9
cached(:aws_region) { 'us-iso-test' }
10
11
+ before do
12
+ allow_any_instance_of(String).to receive(:start_with?).with("us-iso").and_return(true)
13
+ end
14
+
15
16
context "when cookbook virtualenv not installed yet" do
17
cached(:chef_run) do
18
runner = runner(platform: platform, version: version) do |node|
0 commit comments