Sha256: 0c155e5963249022637fb45ab7afacbb614586d8252e43c411bf61f7c003e157
Contents?: true
Size: 628 Bytes
Versions: 42
Compression:
Stored size: 628 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Solaris11 describe service('svc:/network/http:apache22') do it { should have_property 'httpd/enable_64bit' => false } its(:command) { should eq "svcprop -p httpd/enable_64bit svc:/network/http:apache22 | grep -- \\^false\\$" } end describe service('svc:/network/http:apache22') do it { should have_property 'httpd/enable_64bit' => false, 'httpd/server_type' => 'worker' } its(:command) { should eq "svcprop -p httpd/enable_64bit svc:/network/http:apache22 | grep -- \\^false\\$ && svcprop -p httpd/server_type svc:/network/http:apache22 | grep -- \\^worker\\$" } end
Version data entries
42 entries across 42 versions & 1 rubygems