Add a missing test for exercising the last untested line of lib/puppet/type/ssh_authorized_key.rb

This commit is contained in:
Francois Deppierraz 2008-07-03 10:34:49 +02:00 коммит произвёл James Turnbull
Родитель 731d0f2291
Коммит 7a6ae29962
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -118,6 +118,16 @@ describe ssh_authorized_key do
@catalog.resource(:file, target).should be_an_instance_of(Puppet::Type.type(:file))
end
it "should raise an error when neither user nor target is given" do
proc do
@class.create(
:name => "Test",
:key => "AAA",
:type => "ssh-rsa",
:ensure => :present)
end.should raise_error(Puppet::Error)
end
after do
@class.clear
@catalog.clear