inspec 0.21.4 → 0.21.5

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: 6c4b9ddfdd938125e49d0de346cd3ddc680102ec
4
- data.tar.gz: 611a23c93ca0a9a88f0bca9c904c8976ea42b34f
3
+ metadata.gz: 7987ef3cfd302898ec17ef7f18e3e22f9e458449
4
+ data.tar.gz: 76cf8de1700446eb2eb7b1fe1b2478a4aec63d18
5
5
  SHA512:
6
- metadata.gz: 9ef13914cdf0244f62ec4e77bf978d4397fd35698394be0d0b1cf4369ea2eaea6b34b9091c7d2467040ede39e2696e8c1bf91031ab7c53c598c953013aff6cb8
7
- data.tar.gz: f5decb00ff30769b253d841566798f55a6dc3f8f1582f76d6a712188ddbf9bb25e8e325b8ea7c1296b52b9c7e27e497bdd37c18f2c91e42b6d3e28294349afc3
6
+ metadata.gz: 008eebc069872f28e8ff1e42d9b087673ecc988cffd50a2fd6e98d7ae9f5bfd4fc98efdb0c4336f67f462e0770af4225de04d5069013caab7827a14b86b7d772
7
+ data.tar.gz: 537d9fdd3fb0af2a8bde463f2d28b3e76cdf512ec76f5b3e6cf621fb25e789bd1d133e39240dfa7751e72fd08af1aae94277a3a474b589175192167b31018c67
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [0.21.4](https://github.com/chef/inspec/tree/0.21.4) (2016-05-13)
4
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.3...0.21.4)
3
+ ## [0.21.5](https://github.com/chef/inspec/tree/0.21.5) (2016-05-13)
4
+ [Full Changelog](https://github.com/chef/inspec/compare/v0.21.4...0.21.5)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - fix construction of ruby objects on string and array handlers [\#746](https://github.com/chef/inspec/pull/746) ([arlimus](https://github.com/arlimus))
9
+
10
+ ## [v0.21.4](https://github.com/chef/inspec/tree/v0.21.4) (2016-05-13)
11
+ [Full Changelog](https://github.com/chef/inspec/compare/v0.21.3...v0.21.4)
5
12
 
6
13
  **Implemented enhancements:**
7
14
 
@@ -49,7 +49,7 @@ module Inspec
49
49
  if @qualifier.length > 1
50
50
  last = @qualifier[-1]
51
51
  # preventing its('to_i') as the value returned is always 0
52
- if last.length == 1 && last[0] != 'to_i'
52
+ if last.length == 1 && last[0] !~ /^to_.$/ && !last[0].include?('[')
53
53
  xres = last[0]
54
54
  else
55
55
  res += '.' + ruby_qualifier(last)
@@ -3,5 +3,5 @@
3
3
  # author: Christoph Hartmann
4
4
 
5
5
  module Inspec
6
- VERSION = '0.21.4'.freeze
6
+ VERSION = '0.21.5'.freeze
7
7
  end
@@ -0,0 +1,56 @@
1
+ # encoding: utf-8
2
+ # author: Dominik Richter
3
+ # author: Christoph Hartmann
4
+
5
+ require 'helper'
6
+ require 'inspec/objects'
7
+
8
+ describe 'Objects' do
9
+ describe 'Test' do
10
+ let(:obj) { Inspec::Test.new }
11
+ it 'constructs a simple resource+argument' do
12
+ obj.qualifier = [['resource'], ['arg']]
13
+ obj.to_ruby.must_equal "
14
+ describe resource do
15
+ its(\"arg\") { should }
16
+ end
17
+ ".strip
18
+ end
19
+
20
+ it 'constructs a simple resource+argument with to_s' do
21
+ obj.qualifier = [['resource'], ['to_s']]
22
+ obj.to_ruby.must_equal "
23
+ describe resource.to_s do
24
+ it { should }
25
+ end
26
+ ".strip
27
+ end
28
+
29
+ it 'constructs a simple resource+argument with to_i' do
30
+ obj.qualifier = [['resource'], ['to_i']]
31
+ obj.to_ruby.must_equal "
32
+ describe resource.to_i do
33
+ it { should }
34
+ end
35
+ ".strip
36
+ end
37
+
38
+ it 'constructs a simple resource+argument with array accessors' do
39
+ obj.qualifier = [['resource'], ['name[2]']]
40
+ obj.to_ruby.must_equal "
41
+ describe resource.name[2] do
42
+ it { should }
43
+ end
44
+ ".strip
45
+ end
46
+
47
+ it 'constructs a simple resource+argument with method calls' do
48
+ obj.qualifier = [['resource'], ['hello', 'world']]
49
+ obj.to_ruby.must_equal "
50
+ describe resource.hello(\"world\") do
51
+ it { should }
52
+ end
53
+ ".strip
54
+ end
55
+ end
56
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.4
4
+ version: 0.21.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominik Richter
@@ -558,6 +558,7 @@ files:
558
558
  - test/unit/mock/profiles/skippy-profile-os/inspec.yml
559
559
  - test/unit/mock/profiles/supported_inspec/inspec.yml
560
560
  - test/unit/mock/profiles/unsupported_inspec/inspec.yml
561
+ - test/unit/objects_test.rb
561
562
  - test/unit/plugin_test.rb
562
563
  - test/unit/plugins/resource_test.rb
563
564
  - test/unit/profile_context_test.rb
@@ -835,6 +836,7 @@ test_files:
835
836
  - test/unit/mock/profiles/skippy-profile-os/inspec.yml
836
837
  - test/unit/mock/profiles/supported_inspec/inspec.yml
837
838
  - test/unit/mock/profiles/unsupported_inspec/inspec.yml
839
+ - test/unit/objects_test.rb
838
840
  - test/unit/plugin_test.rb
839
841
  - test/unit/plugins/resource_test.rb
840
842
  - test/unit/profile_context_test.rb