blob: ad51a260098bcdfe80a32510ec336a788061da92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env ruby
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
|