[DRE-commits] [ruby-rspec-puppet] 01/07: Updated version 2.6.1 from 'upstream/2.6.1'

Sebastien Badia sbadia at moszumanska.debian.org
Sun Jul 2 11:51:34 UTC 2017


This is an automated email from the git hooks/post-receive script.

sbadia pushed a commit to branch master
in repository ruby-rspec-puppet.

commit 9e98aad244ba06540be47805e3ec1aa45f374a26
Merge: 9c04355 a26a5d0
Author: Sebastien Badia <sbadia at debian.org>
Date:   Sun Jul 2 13:34:09 2017 +0200

    Updated version 2.6.1 from 'upstream/2.6.1'
    
    with Debian dir f3a7b42069ada3f24933bd0d20b4256d3af14e42

 .rspec                                             |   2 +
 .travis.yml                                        |  39 +-
 CHANGELOG.md                                       | 117 +++++-
 Gemfile                                            |  27 +-
 README.md                                          | 438 +++++++++++++++++++--
 appveyor.yml                                       |  46 +++
 lib/rspec-puppet.rb                                |  18 +
 lib/rspec-puppet/adapters.rb                       |  68 ++--
 lib/rspec-puppet/coverage.rb                       |  37 +-
 lib/rspec-puppet/example.rb                        |  46 +--
 .../example/application_example_group.rb           |  19 +
 lib/rspec-puppet/example/function_example_group.rb | 142 ++++++-
 .../example/type_alias_example_group.rb            |  14 +
 lib/rspec-puppet/matchers.rb                       |   1 +
 lib/rspec-puppet/matchers/allow_value.rb           |  45 +++
 lib/rspec-puppet/matchers/compile.rb               |   7 +
 lib/rspec-puppet/matchers/create_generic.rb        |  67 +++-
 lib/rspec-puppet/matchers/parameter_matcher.rb     |   4 +-
 lib/rspec-puppet/matchers/run.rb                   |  31 +-
 lib/rspec-puppet/monkey_patches.rb                 | 162 ++++++++
 lib/rspec-puppet/raw_string.rb                     |  16 +
 lib/rspec-puppet/setup.rb                          |  73 ++--
 lib/rspec-puppet/spec_helper.rb                    |   7 +-
 lib/rspec-puppet/support.rb                        | 278 +++++++++++--
 rspec-puppet.gemspec                               |   2 +-
 spec/applications/orch_app_spec.rb                 |  25 ++
 spec/classes/default_spec.rb                       |   6 +
 spec/classes/facts_spec.rb                         |  31 +-
 spec/classes/hash_spec.rb                          |   6 +-
 spec/classes/node_params_spec.rb                   |  31 ++
 spec/classes/relationship__before_spec.rb          |  15 +
 spec/classes/relationship__titles_spec.rb          |  16 +
 spec/classes/relationships_complex_spec.rb         |   5 +
 spec/classes/sysctl_common_spec.rb                 |   9 +-
 spec/classes/test_api.rb                           |  21 -
 spec/classes/test_api_spec.rb                      |  36 ++
 spec/classes/test_basic_spec.rb                    |  18 +
 spec/classes/test_classes_used_spec.rb             |   1 +
 spec/classes/test_duplicate_alias_spec.rb          |   8 +
 spec/classes/test_provider_suitability_spec.rb     |  28 ++
 spec/classes/test_user_spec.rb                     |   8 +
 spec/classes/test_windows_spec.rb                  |   7 +
 spec/classes/trusted_facts_spec.rb                 |  56 +++
 spec/classes/undef_spec.rb                         |  47 ++-
 spec/defines/test_api.rb                           |  16 -
 spec/defines/test_api_spec.rb                      |  20 +
 spec/defines/test_loop_define_spec.rb              |  18 +
 spec/defines/undef_def_spec.rb                     |  49 ++-
 spec/fixtures/manifests/site.pp                    |  11 +-
 spec/fixtures/modules/aliases/types/onlyarray.pp   |   1 +
 spec/fixtures/modules/aliases/types/onlyhash.pp    |   1 +
 spec/fixtures/modules/aliases/types/shape.pp       |   1 +
 .../modules/default_test/manifests/init.pp         |   3 +
 .../modules/dynamic/manifests/create_resources.pp  |   3 +
 .../fixtures/modules/node_params/manifests/init.pp |  39 ++
 spec/fixtures/modules/orch_app/manifests/db.pp     |   3 +
 spec/fixtures/modules/orch_app/manifests/init.pp   |   6 +
 .../modules/relationships/manifests/complex.pp     |  14 +
 .../modules/relationships/manifests/titles.pp      |  11 +
 .../modules/structured_facts/functions/lookup.pp   |   3 +
 .../structured_facts/manifests/case_check.pp       |   4 +
 .../modules/test/functions/hiera_function.pp       |   3 +
 .../lib/puppet/functions/frozen_array_function.rb  |   5 +
 .../test/lib/puppet/functions/frozen_function.rb   |   5 +
 .../lib/puppet/functions/frozen_hash_function.rb   |   5 +
 .../puppet/parser/functions/camelCaseFunction.rb   |   7 +
 .../lib/puppet/parser/functions/ensure_packages.rb |   4 +
 spec/fixtures/modules/test/manifests/bare_class.pp |   1 +
 spec/fixtures/modules/test/manifests/basic.pp      |   5 +
 .../modules/test/manifests/duplicate_alias.pp      |   9 +
 .../fixtures/modules/test/manifests/loop_define.pp |   3 +
 .../modules/test/manifests/parameterised_class.pp  |   2 +-
 .../modules/test/manifests/provider_suitability.pp |  12 +
 spec/fixtures/modules/test/manifests/user.pp       |   6 +
 spec/fixtures/modules/test/manifests/windows.pp    |   7 +
 .../modules/trusted_facts/functions/lookup.pp      |   5 +
 .../modules/trusted_facts/manifests/init.pp        |  14 +
 spec/fixtures/modules/undef_test/manifests/def.pp  |   9 +-
 spec/fixtures/modules/undef_test/manifests/init.pp |   9 +-
 spec/functions/camelCaseFunction_spec.rb           |   8 +
 spec/functions/ensure_packages_spec.rb             |  10 +
 spec/functions/facts_lookup_spec.rb                |  15 +
 spec/functions/lambda_function_spec.rb             |   5 +
 spec/functions/split_spec.rb                       |   6 +-
 spec/functions/test_function_spec.rb               |  10 +-
 spec/functions/test_hiera_function_spec.rb         |  13 +
 spec/functions/test_type_override_spec.rb          |   6 +
 spec/functions/trusted_facts_lookup_spec.rb        |  22 ++
 spec/hosts/bad_dep_host_spec.rb                    |   5 -
 spec/hosts/environment_spec.rb                     |   4 +-
 spec/hosts/test_api.rb                             |  13 -
 spec/hosts/test_api_spec.rb                        |  18 +
 spec/raw_string_spec.rb                            |   9 +
 spec/spec_helper.rb                                |   7 +-
 spec/support_spec.rb                               |  83 ++++
 spec/type_aliases/onlyarray_spec.rb                |   6 +
 spec/type_aliases/onlyhash_spec.rb                 |   7 +
 spec/type_aliases/shape_spec.rb                    |  11 +
 spec/unit/adapters_spec.rb                         |  45 ++-
 spec/unit/coverage_spec.rb                         |  18 +-
 spec/unit/example/function_example_group_spec.rb   |  47 +++
 spec/unit/matchers/allow_value_spec.rb             |  87 ++++
 spec/unit/matchers/compile_spec.rb                 | 185 +++++++++
 spec/unit/matchers/run_spec.rb                     | 100 ++---
 spec/unit/monkey_patches_spec.rb                   | 134 +++++++
 105 files changed, 2830 insertions(+), 438 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-rspec-puppet.git



More information about the Pkg-ruby-extras-commits mailing list