summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/provider/whole_line
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2011-08-04 19:17:48 -0700
committerJeff McCune <jeff@puppetlabs.com>2011-08-04 19:17:48 -0700
commit4c93090e1aad8dfdaa39b4f304d3c87704408b13 (patch)
treed1fefe1700bc598fad79311f8c85d4767a81d090 /spec/unit/puppet/provider/whole_line
parent07d0eca31780bba76f2283ce83f944473ce8fe00 (diff)
(#8792) Rename whole_line type to file_line
Without this patch the resource whole_line would be included in the stable stdlib module shipping in PE 1.2. Ideally the name will be stable and unchanging in the future. There was quite a bit of concern over whole_line being an unwise name. file_line appears to be the most suitable name and least likely to need another rename in the future.
Diffstat (limited to 'spec/unit/puppet/provider/whole_line')
-rw-r--r--spec/unit/puppet/provider/whole_line/ruby_spec.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/unit/puppet/provider/whole_line/ruby_spec.rb b/spec/unit/puppet/provider/whole_line/ruby_spec.rb
deleted file mode 100644
index 9faff2c..0000000
--- a/spec/unit/puppet/provider/whole_line/ruby_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-require 'puppet'
-require 'tempfile'
-provider_class = Puppet::Type.type(:whole_line).provider(:ruby)
-describe provider_class do
- before :each do
- tmp = Tempfile.new('tmp')
- @tmpfile = tmp.path
- tmp.close!
- @resource = Puppet::Type::Whole_line.new(
- {:name => 'foo', :path => @tmpfile, :line => 'foo'}
- )
- @provider = provider_class.new(@resource)
- end
- it 'should detect if the line exists in the file' do
- File.open(@tmpfile, 'w') do |fh|
- fh.write('foo')
- end
- @provider.exists?.should be_true
- end
- it 'should detect if the line does not exist in the file' do
- File.open(@tmpfile, 'w') do |fh|
- fh.write('foo1')
- end
- @provider.exists?.should be_nil
- end
- it 'should append to an existing file when creating' do
- @provider.create
- File.read(@tmpfile).chomp.should == 'foo'
- end
-end