summaryrefslogtreecommitdiffstats
path: root/spec/integration/file_serving/content_spec.rb
blob: a95ddc5206be139f3e5b72246c6c794faf3d6208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env rspec
#
#  Created by Luke Kanies on 2007-10-18.
#  Copyright (c) 2007. All rights reserved.

require 'spec_helper'

require 'puppet/file_serving/content'
require 'shared_behaviours/file_serving'

describe Puppet::FileServing::Content, " when finding files" do
  it_should_behave_like "Puppet::FileServing::Files"

  before do
    @test_class = Puppet::FileServing::Content
    @indirection = Puppet::FileServing::Content.indirection
  end

  after { Puppet::Util::Cacher.expire }
end