summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorGeoff Williams <GeoffWilliams@users.noreply.github.com>2017-03-14 01:24:36 +1100
committerPaula McMaw <paula@puppet.com>2017-03-13 14:24:36 +0000
commit46e3a2349e9eef4001db8be9581fae9dfbccaf14 (patch)
tree999af0329383b541ec2cd782cdaa47ede5f32791 /spec
parent70d071ba6fa3cf611e5dbdc1cba1343255edf978 (diff)
(#FM-6068) allow file encoding to be specified (#726)
* (#FM-6068) allow file encoding to be specified Add a new parameter `encoding` to allow non UTF-8 files to specify a file encoding. This prevents receiving the error message "invalid byte sequence in UTF-8" when special characters that are not UTF-8 encoded appear in the input stream, such as the copyright symbol. * (#FM-6068) allow file encoding to be specified Added docs and tests as requested
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/puppet/type/file_line_spec.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/unit/puppet/type/file_line_spec.rb b/spec/unit/puppet/type/file_line_spec.rb
index 7da8a7d..150149b 100755
--- a/spec/unit/puppet/type/file_line_spec.rb
+++ b/spec/unit/puppet/type/file_line_spec.rb
@@ -87,7 +87,12 @@ describe Puppet::Type.type(:file_line) do
it 'should default to replace => true' do
expect(file_line[:replace]).to eq :true
end
-
+ it 'should default to encoding => UTF-8' do
+ expect(file_line[:encoding]).to eq 'UTF-8'
+ end
+ it 'should accept encoding => iso-8859-1' do
+ expect { Puppet::Type.type(:file_line).new(:name => 'foo', :path => tmp_path, :ensure => :present, :encoding => 'iso-8859-1', :line => 'bar') }.not_to raise_error
+ end
it "should autorequire the file it manages" do
catalog = Puppet::Resource::Catalog.new
file = Puppet::Type.type(:file).new(:name => tmp_path)