summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/type/whole_line_spec.rb
diff options
context:
space:
mode:
authorKen Barber <ken@bob.sh>2011-08-08 09:47:30 -0700
committerKen Barber <ken@bob.sh>2011-08-08 09:47:30 -0700
commitef4ef11ae0bad1aa2d7659aa7774df9e39146855 (patch)
tree7a705b349ab1f976328eef1fa7c3e7167a1bd769 /spec/unit/puppet/type/whole_line_spec.rb
parent07d0eca31780bba76f2283ce83f944473ce8fe00 (diff)
parentf3c53e6f1943417a1690f5a976076f24277c6b06 (diff)
downloadpuppet-stdlib-ef4ef11ae0bad1aa2d7659aa7774df9e39146855.tar.gz
puppet-stdlib-ef4ef11ae0bad1aa2d7659aa7774df9e39146855.tar.bz2
Merge pull request #10 from jeffmccune/ticket/master/8792_rename_whole_line_to_file_line
(#8792) Rename whole_line type to file_line.
Diffstat (limited to 'spec/unit/puppet/type/whole_line_spec.rb')
-rw-r--r--spec/unit/puppet/type/whole_line_spec.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/spec/unit/puppet/type/whole_line_spec.rb b/spec/unit/puppet/type/whole_line_spec.rb
deleted file mode 100644
index f273baa..0000000
--- a/spec/unit/puppet/type/whole_line_spec.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'puppet'
-require 'tempfile'
-describe Puppet::Type.type(:whole_line) do
- before :each do
- @whole_line = Puppet::Type.type(:whole_line).new(:name => 'foo', :line => 'line', :path => '/tmp/path')
- end
- it 'should accept a line and path' do
- @whole_line[:line] = 'my_line'
- @whole_line[:line].should == 'my_line'
- end
- it 'should accept posix filenames' do
- @whole_line[:path] = '/tmp/path'
- @whole_line[:path].should == '/tmp/path'
- end
- it 'should not accept unqualified path' do
- expect { @whole_line[:path] = 'file' }.should raise_error(Puppet::Error, /File paths must be fully qualified/)
- end
- it 'should require that a line is specified' do
- expect { Puppet::Type.type(:whole_line).new(:name => 'foo', :path => '/tmp/file') }.should raise_error(Puppet::Error, /Both line and path are required attributes/)
- end
- it 'should require that a file is specified' do
- expect { Puppet::Type.type(:whole_line).new(:name => 'foo', :line => 'path') }.should raise_error(Puppet::Error, /Both line and path are required attributes/)
- end
-end