[DRE-commits] [ruby-rspec-puppet] branch master updated (9c04355 -> 7097f0f)

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 change to branch master
in repository ruby-rspec-puppet.

      from  9c04355   update Standards-Version (no changes required)
      adds  a26a5d0   New upstream version 2.6.1
       new  9e98aad   Updated version 2.6.1 from 'upstream/2.6.1'
       new  6dbf13d   d/compat: Bump compat version to 10
       new  7d4f1b3   d/control: Update BD (puppet-common is now a meta package)
       new  73889f7   d/control: Bump Standard-Version to 4.0.0 (no changes needed)
       new  69c7de8   d/rules: Enable dependencies check during tests
       new  edf824b   d/control: Added testsuite to autopkgtest-pkg-ruby (debci)
       new  7097f0f   Prepare Debian changelog

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .rspec                                             |   2 +
 .travis.yml                                        |  39 +-
 CHANGELOG.md                                       | 117 +++++-
 Gemfile                                            |  27 +-
 README.md                                          | 438 +++++++++++++++++++--
 appveyor.yml                                       |  46 +++
 debian/changelog                                   |  13 +
 debian/compat                                      |   2 +-
 debian/control                                     |   7 +-
 debian/rules                                       |  12 +-
 lib/rspec-puppet.rb                                |  18 +
 lib/rspec-puppet/adapters.rb                       |  68 ++--
 lib/rspec-puppet/coverage.rb                       |  37 +-
 lib/rspec-puppet/example.rb                        |  46 +--
 ...ample_group.rb => application_example_group.rb} |   7 +-
 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 +++++++
 109 files changed, 2834 insertions(+), 456 deletions(-)
 create mode 100644 .rspec
 create mode 100644 appveyor.yml
 copy lib/rspec-puppet/example/{host_example_group.rb => application_example_group.rb} (54%)
 create mode 100644 lib/rspec-puppet/example/type_alias_example_group.rb
 create mode 100644 lib/rspec-puppet/matchers/allow_value.rb
 create mode 100644 lib/rspec-puppet/monkey_patches.rb
 create mode 100644 lib/rspec-puppet/raw_string.rb
 create mode 100644 spec/applications/orch_app_spec.rb
 create mode 100644 spec/classes/default_spec.rb
 create mode 100644 spec/classes/node_params_spec.rb
 create mode 100644 spec/classes/relationship__titles_spec.rb
 create mode 100644 spec/classes/relationships_complex_spec.rb
 delete mode 100644 spec/classes/test_api.rb
 create mode 100644 spec/classes/test_api_spec.rb
 create mode 100644 spec/classes/test_basic_spec.rb
 create mode 100644 spec/classes/test_duplicate_alias_spec.rb
 create mode 100644 spec/classes/test_provider_suitability_spec.rb
 create mode 100644 spec/classes/test_user_spec.rb
 create mode 100644 spec/classes/test_windows_spec.rb
 create mode 100644 spec/classes/trusted_facts_spec.rb
 delete mode 100644 spec/defines/test_api.rb
 create mode 100644 spec/defines/test_api_spec.rb
 create mode 100644 spec/defines/test_loop_define_spec.rb
 create mode 100644 spec/fixtures/modules/aliases/types/onlyarray.pp
 create mode 100644 spec/fixtures/modules/aliases/types/onlyhash.pp
 create mode 100644 spec/fixtures/modules/aliases/types/shape.pp
 create mode 100644 spec/fixtures/modules/default_test/manifests/init.pp
 create mode 100644 spec/fixtures/modules/dynamic/manifests/create_resources.pp
 create mode 100644 spec/fixtures/modules/node_params/manifests/init.pp
 create mode 100644 spec/fixtures/modules/orch_app/manifests/db.pp
 create mode 100644 spec/fixtures/modules/orch_app/manifests/init.pp
 create mode 100644 spec/fixtures/modules/relationships/manifests/complex.pp
 create mode 100644 spec/fixtures/modules/relationships/manifests/titles.pp
 create mode 100644 spec/fixtures/modules/structured_facts/functions/lookup.pp
 create mode 100644 spec/fixtures/modules/structured_facts/manifests/case_check.pp
 create mode 100644 spec/fixtures/modules/test/functions/hiera_function.pp
 create mode 100644 spec/fixtures/modules/test/lib/puppet/functions/frozen_array_function.rb
 create mode 100644 spec/fixtures/modules/test/lib/puppet/functions/frozen_function.rb
 create mode 100644 spec/fixtures/modules/test/lib/puppet/functions/frozen_hash_function.rb
 create mode 100644 spec/fixtures/modules/test/lib/puppet/parser/functions/camelCaseFunction.rb
 create mode 100644 spec/fixtures/modules/test/lib/puppet/parser/functions/ensure_packages.rb
 create mode 100644 spec/fixtures/modules/test/manifests/basic.pp
 create mode 100644 spec/fixtures/modules/test/manifests/duplicate_alias.pp
 create mode 100644 spec/fixtures/modules/test/manifests/loop_define.pp
 create mode 100644 spec/fixtures/modules/test/manifests/provider_suitability.pp
 create mode 100644 spec/fixtures/modules/test/manifests/user.pp
 create mode 100644 spec/fixtures/modules/test/manifests/windows.pp
 create mode 100644 spec/fixtures/modules/trusted_facts/functions/lookup.pp
 create mode 100644 spec/fixtures/modules/trusted_facts/manifests/init.pp
 create mode 100644 spec/functions/camelCaseFunction_spec.rb
 create mode 100644 spec/functions/ensure_packages_spec.rb
 create mode 100644 spec/functions/facts_lookup_spec.rb
 create mode 100644 spec/functions/lambda_function_spec.rb
 create mode 100644 spec/functions/test_hiera_function_spec.rb
 create mode 100644 spec/functions/test_type_override_spec.rb
 create mode 100644 spec/functions/trusted_facts_lookup_spec.rb
 delete mode 100644 spec/hosts/bad_dep_host_spec.rb
 delete mode 100644 spec/hosts/test_api.rb
 create mode 100644 spec/hosts/test_api_spec.rb
 create mode 100644 spec/raw_string_spec.rb
 create mode 100644 spec/type_aliases/onlyarray_spec.rb
 create mode 100644 spec/type_aliases/onlyhash_spec.rb
 create mode 100644 spec/type_aliases/shape_spec.rb
 create mode 100644 spec/unit/example/function_example_group_spec.rb
 create mode 100644 spec/unit/matchers/allow_value_spec.rb
 create mode 100644 spec/unit/matchers/compile_spec.rb
 create mode 100644 spec/unit/monkey_patches_spec.rb

-- 
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