blob: c3f05720f60145a77e1d069a1e796d47eb856102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env rspec
require 'spec_helper'
require 'puppet/face'
describe Puppet::Face[:file, '0.0.1'] do
it_should_behave_like "an indirector face"
[:download, :store].each do |action|
it { should be_action action }
it { should respond_to action }
end
end
|