~ubuntu-branches/ubuntu/oneiric/puppet/oneiric-security

« back to all changes in this revision

Viewing changes to spec/integration/file_serving/metadata.rb

  • Committer: Bazaar Package Importer
  • Author(s): Micah Anderson
  • Date: 2008-07-26 15:43:45 UTC
  • mto: (3.1.1 lenny) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080726154345-1fmgo76b4l72ulvc
ImportĀ upstreamĀ versionĀ 0.24.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env ruby
 
2
#
 
3
#  Created by Luke Kanies on 2007-10-18.
 
4
#  Copyright (c) 2007. All rights reserved.
 
5
 
 
6
require File.dirname(__FILE__) + '/../../spec_helper'
 
7
 
 
8
require 'puppet/file_serving/metadata'
 
9
require 'shared_behaviours/file_serving'
 
10
 
 
11
describe Puppet::FileServing::Metadata, " when finding files" do
 
12
    it_should_behave_like "Puppet::FileServing::Files"
 
13
 
 
14
    before do
 
15
        @test_class = Puppet::FileServing::Metadata
 
16
        @indirection = Puppet::FileServing::Metadata.indirection
 
17
    end
 
18
end