blob: b1479823686bd38c0ed164beaaa139e8d6c4a46f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'spec_helper'
describe Puppet::Util::Execution do
describe "#execpipe" do
it "should set LANG to C avoid localized output", :if => !Puppet.features.microsoft_windows? do
out = ""
Puppet::Util::Execution.execpipe('echo $LANG'){ |line| out << line.read.chomp }
expect(out).to eq("C")
end
it "should set LC_ALL to C avoid localized output", :if => !Puppet.features.microsoft_windows? do
out = ""
Puppet::Util::Execution.execpipe('echo $LC_ALL'){ |line| out << line.read.chomp }
expect(out).to eq("C")
end
end
end
|