spec/gentoo/commands_spec.rb in serverspec-0.6.17 vs spec/gentoo/commands_spec.rb in serverspec-0.6.18
- old
+ new
@@ -5,19 +5,10 @@
describe 'Serverspec commands of Gentoo family' do
it_behaves_like 'support command check_file', '/etc/passwd'
it_behaves_like 'support command check_directory', '/var/log'
it_behaves_like 'support command check_socket', '/var/run/unicorn.sock'
- it_behaves_like 'support command check_installed_by_gem', 'jekyll'
- it_behaves_like 'support command check_installed_by_gem with_version', 'jekyll', '1.0.2'
-
- it_behaves_like 'support command check_installed_by_npm', 'hubot'
- it_behaves_like 'support command check_installed_by_npm with_version', 'hubot', '1.0.2'
-
- it_behaves_like 'support command check_installed_by_pecl', 'mongo'
- it_behaves_like 'support command check_installed_by_pecl with_version', 'mongo', '1.4.1'
-
it_behaves_like 'support command check_mounted', '/'
it_behaves_like 'support command check_user', 'root'
it_behaves_like 'support command check_user', 'wheel'
@@ -56,14 +47,9 @@
end
describe 'check_enabled' do
subject { commands.check_enabled('httpd') }
it { should eq "rc-update show | grep -- \\^\\\\s\\*httpd\\\\s\\*\\|\\\\s\\*\\\\\\(boot\\\\\\|default\\\\\\)" }
-end
-
-describe 'check_installed' do
- subject { commands.check_installed('httpd') }
- it { should eq 'eix httpd --installed' }
end
describe 'check_running' do
subject { commands.check_running('httpd') }
it { should eq '/etc/init.d/httpd status' }