test-kitchen 1.13.1 → 1.13.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e400ae4e1a64a89c1711cc8437ff3b9c3e8e3c51
4
- data.tar.gz: 496cc8a4c084dc51b0703a77149108bd87a87264
3
+ metadata.gz: 78c2cca699db03ee1a9909ea2f018596cf165ef2
4
+ data.tar.gz: 7b290a7bf32a537d37f399df2f0efad8cf5021e3
5
5
  SHA512:
6
- metadata.gz: f32715891dc178efde77565d6ab5751f5810f352f8890eafa775f06cbd8278ede1b72d78f5e90ac99676f128dc8885f5b3eb8054875253598a131625e74b0c8d
7
- data.tar.gz: 7cc8b7c43218aa60ac90d78fff786884465ea08d4f2efa2e1ded5dd1e72d0245fe4c3eaf5de7bde6d00b072ec33b2111b3dbebe3e596d730550a0e7b2182bf59
6
+ metadata.gz: 8e1a6c1ebac8a6bf832e6d246ddf0ad3126c97e47fce9e92de74a4df5ed4373c927d4351a2b40d5b54fce8eb3fec392e48c14919a7f1205ba3e5aa10aeb7a4a5
7
+ data.tar.gz: 1292bc9dab4afc3576b3b0e0242f701b2064601a6319c192914ba5268b7d1f9f5da8d4bfe8965b2bbab75256fb2de93d97db3554cfea2f631947f293afe56763
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.13.2](https://github.com/test-kitchen/test-kitchen/tree/v1.13.2) (2016-09-26)
4
+ [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.13.1...v1.13.2)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - fix broken path on nano so shell out works [\#1129](https://github.com/test-kitchen/test-kitchen/pull/1129) ([mwrock](https://github.com/mwrock))
9
+
3
10
  ## [v1.13.1](https://github.com/test-kitchen/test-kitchen/tree/v1.13.1) (2016-09-22)
4
11
  [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.13.0...v1.13.1)
5
12
 
@@ -254,9 +254,10 @@ module Kitchen
254
254
  # @api private
255
255
  def reload_ps1_path
256
256
  [
257
- %{$env:PATH},
258
- %(try { [System.Environment]::GetEnvironmentVariable("PATH","Machine") } catch {}\n\n)
259
- ].join(" = ")
257
+ "$env:PATH = try {",
258
+ "[System.Environment]::GetEnvironmentVariable('PATH','Machine')",
259
+ "} catch { $env:PATH }\n\n"
260
+ ].join("\n")
260
261
  end
261
262
 
262
263
  # Builds a shell environment variable assignment string for the
@@ -17,5 +17,5 @@
17
17
  # limitations under the License.
18
18
 
19
19
  module Kitchen
20
- VERSION = "1.13.1"
20
+ VERSION = "1.13.2"
21
21
  end
@@ -499,8 +499,9 @@ describe Kitchen::Provisioner::ChefSolo do
499
499
  end
500
500
 
501
501
  it "reloads PATH for older chef omnibus packages" do
502
- cmd.must_match regexify("$env:PATH = " +
503
- %(try { [System.Environment]::GetEnvironmentVariable("PATH","Machine") } catch {}))
502
+ cmd.must_match regexify("$env:PATH = try {\n" \
503
+ "[System.Environment]::GetEnvironmentVariable('PATH','Machine')\n" \
504
+ "} catch { $env:PATH }")
504
505
  end
505
506
 
506
507
  it "calls the chef-solo command from :chef_solo_path" do
@@ -817,8 +817,9 @@ describe Kitchen::Provisioner::ChefZero do
817
817
  end
818
818
 
819
819
  it "reloads PATH for older chef omnibus packages" do
820
- cmd.must_match regexify("$env:PATH = " +
821
- %(try { [System.Environment]::GetEnvironmentVariable("PATH","Machine") } catch {}))
820
+ cmd.must_match regexify("$env:PATH = try {\n" \
821
+ "[System.Environment]::GetEnvironmentVariable('PATH','Machine')\n" \
822
+ "} catch { $env:PATH }")
822
823
  end
823
824
 
824
825
  it "calls the chef-client command from :chef_client_path" do
@@ -978,8 +979,9 @@ describe Kitchen::Provisioner::ChefZero do
978
979
  end
979
980
 
980
981
  it "reloads PATH for older chef omnibus packages" do
981
- cmd.must_match regexify("$env:PATH = " +
982
- %(try { [System.Environment]::GetEnvironmentVariable("PATH","Machine") } catch {}))
982
+ cmd.must_match regexify("$env:PATH = try {\n" \
983
+ "[System.Environment]::GetEnvironmentVariable('PATH','Machine')\n" \
984
+ "} catch { $env:PATH }")
983
985
  end
984
986
  end
985
987
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-kitchen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.1
4
+ version: 1.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-22 00:00:00.000000000 Z
11
+ date: 2016-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout
@@ -634,7 +634,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
634
634
  version: '0'
635
635
  requirements: []
636
636
  rubyforge_project:
637
- rubygems_version: 2.6.6
637
+ rubygems_version: 2.6.4
638
638
  signing_key:
639
639
  specification_version: 4
640
640
  summary: Test Kitchen is an integration tool for developing and testing infrastructure