~ubuntu-branches/ubuntu/trusty/puppet/trusty

« back to all changes in this revision

Viewing changes to spec/integration/parser/compiler_spec.rb

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-10-22 14:08:22 UTC
  • mfrom: (1.1.25) (3.1.32 sid)
  • Revision ID: package-import@ubuntu.com-20111022140822-odxde5lohc45yhuz
Tags: 2.7.6-1
* New upstream release (CVE-2011-3872)
* Remove cherry-picked "groupadd_aix_warning" patch
* Install all new manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    Puppet.settings.clear
14
14
  end
15
15
 
16
 
  it "should be able to determine the configuration version from a local version control repository" do
 
16
  it "should be able to determine the configuration version from a local version control repository", :fails_on_windows => true do
17
17
    # This should always work, because we should always be
18
18
    # in the puppet repo when we run this.
19
19
    version = %x{git rev-parse HEAD}.chomp
20
20
 
 
21
    # REMIND: this fails on Windows due to #8410, re-enable the test when it is fixed
21
22
    Puppet.settings[:config_version] = 'git rev-parse HEAD'
22
23
 
23
24
    @parser = Puppet::Parser::Parser.new "development"