Sha256: c3a9ea114cd028f3b44b59ffe89e0ada3b3c22f21f7c2d9f544f17059ae9d64d
Contents?: true
Size: 626 Bytes
Versions: 42
Compression:
Stored size: 626 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Solaris 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