[DRE-commits] [ruby-rspec-puppet] branch master updated (e5ad6cf -> 69b7e9b)

Sebastien Badia sbadia-guest at moszumanska.debian.org
Thu Apr 9 14:04:54 UTC 2015


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

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

      from  e5ad6cf   Prepare Debian version 2.0.0
       new  994c2ae   d/watch: Fall-back to GitHub in order to use unit tests
      adds  5d5d160   Imported Upstream version 2.0.1
       new  95305fc   Merge tag 'upstream/2.0.1'
       new  69b7e9b   Add puppet-common and rspec-core to BD and enable tests

The 3 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:
 .gitignore                                         |  5 ++
 .travis.yml                                        | 45 ++++++++++
 Gemfile                                            | 19 +++++
 LICENSE                                            | 20 +++++
 Rakefile                                           |  8 ++
 debian/changelog                                   |  8 ++
 debian/control                                     |  5 +-
 debian/ruby-tests.rake                             |  3 +
 debian/ruby-tests.rb                               | 13 ---
 debian/watch                                       |  3 +-
 metadata.yml                                       | 78 -----------------
 rspec-puppet.gemspec                               | 17 ++++
 spec/classes/array_spec.rb                         | 74 +++++++++++++++++
 spec/classes/boolean_regexp_spec.rb                | 13 +++
 spec/classes/boolean_spec.rb                       | 11 +++
 spec/classes/cycle_bad_spec.rb                     |  5 ++
 spec/classes/cycle_good_spec.rb                    |  5 ++
 spec/classes/escape_spec.rb                        |  7 ++
 spec/classes/hash_spec.rb                          | 68 +++++++++++++++
 spec/classes/relationship__before_spec.rb          | 17 ++++
 spec/classes/relationship__notify_spec.rb          | 17 ++++
 spec/classes/sysctl_common_spec.rb                 | 83 ++++++++++++++++++
 spec/classes/test_api.rb                           | 21 +++++
 spec/classes/test_classes_used_spec.rb             | 15 ++++
 spec/classes/test_compile_error_spec.rb            |  7 ++
 spec/classes/test_fail_spec.rb                     |  5 ++
 spec/coverage_spec.rb                              |  3 +
 spec/defines/escape_def_spec.rb                    |  8 ++
 spec/defines/sysctl_before_spec.rb                 | 25 ++++++
 spec/defines/sysctl_spec.rb                        | 21 +++++
 spec/defines/test_api.rb                           | 16 ++++
 spec/fixtures/manifests/site.pp                    | 51 ++++++++++++
 spec/fixtures/modules/boolean/manifests/init.pp    | 12 +++
 spec/fixtures/modules/cycle/manifests/bad.pp       |  8 ++
 spec/fixtures/modules/cycle/manifests/good.pp      |  7 ++
 spec/fixtures/modules/cycle/manifests/init.pp      |  0
 spec/fixtures/modules/escape/manifests/def.pp      |  6 ++
 spec/fixtures/modules/escape/manifests/init.pp     |  6 ++
 .../modules/relationships/manifests/before.pp      | 11 +++
 .../modules/relationships/manifests/notify.pp      | 14 ++++
 .../modules/structured_data/manifests/def.pp       |  5 ++
 .../modules/structured_data/manifests/init.pp      |  5 ++
 spec/fixtures/modules/sysctl/manifests/init.pp     | 39 +++++++++
 spec/fixtures/modules/test/manifests/bare_class.pp |  3 +
 .../modules/test/manifests/classes_used.pp         |  7 ++
 .../modules/test/manifests/compile_error.pp        |  7 ++
 spec/fixtures/modules/test/manifests/fail.pp       |  3 +
 .../modules/test/manifests/parameterised_class.pp  |  3 +
 spec/functions/catalogue_spec.rb                   | 20 +++++
 spec/functions/regsubst_spec.rb                    |  9 ++
 spec/functions/split_spec.rb                       | 30 +++++++
 spec/hosts/array_spec.rb                           | 15 ++++
 spec/hosts/bad_dep_host_spec.rb                    |  5 ++
 spec/hosts/facts_spec.rb                           | 10 +++
 spec/hosts/foo_spec.rb                             |  6 ++
 spec/hosts/good_dep_host_spec.rb                   |  5 ++
 spec/hosts/test_api.rb                             | 13 +++
 spec/hosts/testhost_spec.rb                        | 11 +++
 spec/spec_helper.rb                                |  6 ++
 spec/support_spec.rb                               | 22 +++++
 spec/unit/matchers/parameter_matcher_spec.rb       | 97 ++++++++++++++++++++++
 61 files changed, 988 insertions(+), 93 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 Gemfile
 create mode 100644 LICENSE
 create mode 100644 Rakefile
 create mode 100644 debian/ruby-tests.rake
 delete mode 100644 debian/ruby-tests.rb
 delete mode 100644 metadata.yml
 create mode 100644 rspec-puppet.gemspec
 create mode 100644 spec/classes/array_spec.rb
 create mode 100644 spec/classes/boolean_regexp_spec.rb
 create mode 100644 spec/classes/boolean_spec.rb
 create mode 100644 spec/classes/cycle_bad_spec.rb
 create mode 100644 spec/classes/cycle_good_spec.rb
 create mode 100644 spec/classes/escape_spec.rb
 create mode 100644 spec/classes/hash_spec.rb
 create mode 100644 spec/classes/relationship__before_spec.rb
 create mode 100644 spec/classes/relationship__notify_spec.rb
 create mode 100644 spec/classes/sysctl_common_spec.rb
 create mode 100644 spec/classes/test_api.rb
 create mode 100644 spec/classes/test_classes_used_spec.rb
 create mode 100644 spec/classes/test_compile_error_spec.rb
 create mode 100644 spec/classes/test_fail_spec.rb
 create mode 100644 spec/coverage_spec.rb
 create mode 100644 spec/defines/escape_def_spec.rb
 create mode 100644 spec/defines/sysctl_before_spec.rb
 create mode 100644 spec/defines/sysctl_spec.rb
 create mode 100644 spec/defines/test_api.rb
 create mode 100644 spec/fixtures/manifests/site.pp
 create mode 100644 spec/fixtures/modules/boolean/manifests/init.pp
 create mode 100644 spec/fixtures/modules/cycle/manifests/bad.pp
 create mode 100644 spec/fixtures/modules/cycle/manifests/good.pp
 create mode 100644 spec/fixtures/modules/cycle/manifests/init.pp
 create mode 100644 spec/fixtures/modules/escape/manifests/def.pp
 create mode 100644 spec/fixtures/modules/escape/manifests/init.pp
 create mode 100644 spec/fixtures/modules/relationships/manifests/before.pp
 create mode 100644 spec/fixtures/modules/relationships/manifests/notify.pp
 create mode 100644 spec/fixtures/modules/structured_data/manifests/def.pp
 create mode 100644 spec/fixtures/modules/structured_data/manifests/init.pp
 create mode 100644 spec/fixtures/modules/sysctl/manifests/init.pp
 create mode 100644 spec/fixtures/modules/test/manifests/bare_class.pp
 create mode 100644 spec/fixtures/modules/test/manifests/classes_used.pp
 create mode 100644 spec/fixtures/modules/test/manifests/compile_error.pp
 create mode 100644 spec/fixtures/modules/test/manifests/fail.pp
 create mode 100644 spec/fixtures/modules/test/manifests/parameterised_class.pp
 create mode 100644 spec/functions/catalogue_spec.rb
 create mode 100644 spec/functions/regsubst_spec.rb
 create mode 100644 spec/functions/split_spec.rb
 create mode 100644 spec/hosts/array_spec.rb
 create mode 100644 spec/hosts/bad_dep_host_spec.rb
 create mode 100644 spec/hosts/facts_spec.rb
 create mode 100644 spec/hosts/foo_spec.rb
 create mode 100644 spec/hosts/good_dep_host_spec.rb
 create mode 100644 spec/hosts/test_api.rb
 create mode 100644 spec/hosts/testhost_spec.rb
 create mode 100644 spec/spec_helper.rb
 create mode 100644 spec/support_spec.rb
 create mode 100644 spec/unit/matchers/parameter_matcher_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