Commit 6c1f805b authored by Jonathan Gazeley's avatar Jonathan Gazeley
Browse files

Add auto generated spec tests

parent 7e33cb49
Loading
Loading
Loading
Loading

.bundle/config

0 → 100644
+2 −0
Original line number Diff line number Diff line
---
BUNDLE_DISABLE_SHARED_GEMS: '1'

.fixtures.yml

0 → 100644
+8 −0
Original line number Diff line number Diff line
fixtures:
    symlinks:
      freeradius: "#{source_dir}"
    repositories:
      stdlib:
        repo: https://github.com/puppetlabs/puppetlabs-stdlib.git
        ref: 4.3.2
    forge_modules:

.puppet-lint.rc

0 → 100644
+8 −0
Original line number Diff line number Diff line
# Use this file to instruct puppet-lint to ignore certain checks.
# For the complete list of checks and flags to disable them,
# refer to <http://puppet-lint.com/checks/>.

# Examples (uncomment before use):
#--no-80chars-check
#--no-class_inherits_from_params_class-check
#--no-inherits_across_namespaces-check

.travis.yml

0 → 100644
+14 −0
Original line number Diff line number Diff line
branches:
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
bundler_args: --without development

rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
env:
  matrix:
    - PUPPET_GEM_VERSION="~> 3.2"
    - PUPPET_GEM_VERSION="~> 3.7"

Gemfile

0 → 100644
+27 −0
Original line number Diff line number Diff line
source "https://rubygems.org"

group :test do
    gem "rake"
    gem "puppet", ENV['PUPPET_VERSION'] || '~> 3.8.3'
    gem "rspec-puppet", :git => 'https://github.com/rodjek/rspec-puppet.git'
    gem "puppetlabs_spec_helper"
    gem 'rspec-puppet-utils', :git => 'https://github.com/Accuity/rspec-puppet-utils.git'
    gem 'hiera-puppet-helper', :git => 'https://github.com/bobtfish/hiera-puppet-helper.git'
    gem "metadata-json-lint"
    gem 'puppet-syntax'
    gem 'puppet-lint'
end

group :integration do
    gem "beaker", :git => 'https://github.com/puppetlabs/beaker.git'
    gem "beaker-rspec", :git => 'https://github.com/puppetlabs/beaker-rspec.git'
    gem "vagrant-wrapper"
    gem 'serverspec'
end

group :development do
    gem "travis"
    gem "travis-lint"
    gem "puppet-blacksmith"
    gem "guard-rake"
end
Loading