Add files for spec tests.

In a vain hope that if I place the files there someone
else might write the tests :)
This commit is contained in:
Dan Bode
2012-05-10 22:20:37 -07:00
parent 6c6439a459
commit 880ba865ff
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
require 'spec_helper'
describe 'openstack::all' do
end

View File

@@ -0,0 +1,5 @@
require 'spec_helper'
describe 'openstack::compute' do
end

View File

@@ -0,0 +1,5 @@
require 'spec_helper'
describe 'openstack::controller' do
end

18
spec/spec_helper.rb Normal file
View File

@@ -0,0 +1,18 @@
require 'puppet'
require 'rspec'
require 'rspec-puppet'
def param_value(subject, type, title, param)
subject.resource(type, title).send(:parameters)[param.to_sym]
end
def verify_contents(subject, title, expected_lines)
content = subject.resource('file', title).send(:parameters)[:content]
(content.split("\n") & expected_lines).should == expected_lines
end
RSpec.configure do |c|
c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules/'))
# Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15
c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
end