Sha256: fc206869cf6ee66f7e13f044021fddd66acefb14d1a782070732f6b3c6652eb1
Contents?: true
Size: 624 Bytes
Versions: 38
Compression:
Stored size: 624 Bytes
Contents
require 'spec_helper' include Serverspec::Helper::Darwin describe 'Serverspec command matchers of Darwin 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