Sha256: 0c928341cae503bd7e0169b710e13195b86e1ae2430612f6d408137271025722
Contents?: true
Size: 626 Bytes
Versions: 38
Compression:
Stored size: 626 Bytes
Contents
require 'spec_helper' include Serverspec::Helper::Solaris describe 'Serverspec command matchers of Solaris family' do it_behaves_like 'support command return_stdout matcher', 'cat /etc/resolv.conf', 'localhost' it_behaves_like 'support command return_stdout matcher with regexp', 'cat /etc/resolv.conf', /localhost/ it_behaves_like 'support command return_stderr matcher', 'cat /foo', 'cat: /foo: No such file or directory' it_behaves_like 'support command return_stderr matcher with regexp', 'cat /foo', /No such file or directory/ it_behaves_like 'support command return_exit_status matcher', 'ls /tmp', 0 end
Version data entries
38 entries across 38 versions & 1 rubygems