Sha256: 9ef8a0f0f111ad189e6aa46c3f5221b98ce91a95e3b4dfdb086d809ad38af959
Contents?: true
Size: 555 Bytes
Versions: 203
Compression:
Stored size: 555 Bytes
Contents
require 'spec_helper' set :os, { :family => 'darwin' } describe get_command(:check_user_has_home_directory, 'foo', '/Users/foo') do it { should eq "finger foo | grep -E '^Directory' | awk '{ print $2 }' | grep -E '^/Users/foo$'" } end describe get_command(:check_user_has_login_shell, 'foo', '/bin/bash') do it { should eq "finger foo | grep -E '^Directory' | awk '{ print $4 }' | grep -E '^/bin/bash$'" } end describe get_command(:get_user_home_directory, 'foo') do it { should eq "finger foo | grep -E '^Directory' | awk '{ print $2 }'" } end
Version data entries
203 entries across 203 versions & 3 rubygems