~bkerensa/ubuntu/raring/puppet/new-upstream-release

« back to all changes in this revision

Viewing changes to spec/shared_behaviours/all_parsedfile_providers.rb

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-07-25 01:00:37 UTC
  • mfrom: (1.1.24 upstream) (3.1.25 sid)
  • Revision ID: james.westby@ubuntu.com-20110725010037-875vuxs10eboqgw3
Tags: 2.7.1-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
    set the location of the CRL in apache2 configuration. Fix apache2
    configuration on upgrade as well (LP: #641001)
  - move all puppet dependencies to puppet-common since all the code
    actually located in puppet-common.
  - move libagueas from a recommend to a dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
shared_examples_for "all parsedfile providers" do |provider, *files|
 
2
  if files.empty? then
 
3
    files = my_fixtures
 
4
  end
 
5
 
 
6
  files.flatten.each do |file|
 
7
    it "should rewrite #{file} reasonably unchanged" do
 
8
      provider.stubs(:default_target).returns(file)
 
9
      provider.prefetch
 
10
 
 
11
      text = provider.to_file(provider.target_records(file))
 
12
      text.gsub!(/^# HEADER.+\n/, '')
 
13
 
 
14
      oldlines = File.readlines(file)
 
15
      newlines = text.chomp.split "\n"
 
16
      oldlines.zip(newlines).each do |old, new|
 
17
        new.gsub(/\s+/, '').should == old.chomp.gsub(/\s+/, '')
 
18
      end
 
19
    end
 
20
  end
 
21
end