Sha256: 7a482c3a6c2e805ac986754e0b4db6ea45d012a47494f1eb4cbba56f2b887821
Contents?: true
Size: 625 Bytes
Versions: 38
Compression:
Stored size: 625 Bytes
Contents
require 'spec_helper' include Serverspec::Helper::RedHat describe 'Serverspec command matchers of Red Hat 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