Change the service name so that it is less likely to trip on a common word and spuriously fail

git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2765 980ebf18-57e1-0310-9a29-db15c13687c0
This commit is contained in:
(no author) 2007-08-09 21:43:42 +00:00
Родитель e143cae9a1
Коммит 6a78648fc9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -10,11 +10,11 @@ class TestServiceType < Test::Unit::TestCase
# #199
def test_no_refresh_when_starting
service = Puppet::Type.type(:service).create :name => "testing",
service = Puppet::Type.type(:service).create :name => "hopefully_this_isnt_in_the_process_table",
:ensure => :running, :provider => :base
assert_equal :running, service.instance_eval('@parameters[:ensure]').should
assert_not_equal :running, service.instance_eval('@parameters[:ensure]').retrieve
assert_not_equal :running, service.instance_eval('@parameters[:ensure]').retrieve, "You have something called #{service.name} in your process table"
# First make sure it does not refresh
service.provider.expects(:restart).never