Sha256: 641ad65c5f2226f800321284e694a307c61f371f5206dfa48f7bb4875026851f
Contents?: true
Size: 829 Bytes
Versions: 33
Compression:
Stored size: 829 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Debian describe process("memcached") do let(:stdout) { " 1407\n" } its(:pid) { should eq 1407 } its(:command) { should eq "ps -C memcached -o pid= | head -1" } end describe process("memcached") do let(:stdout) { "/usr/bin/memcached -m 14386 -p 11211 -u nobody -l 10.11.1.53 -c 30000\n" } its(:args) { should match /-c 30000\b/ } its(:command) { should eq "ps -C memcached -o args= | head -1" } end describe process("memcached") do context "when running" do let(:stdout) { " 1407\n" } it { should be_running } its(:command) { should eq "ps -C memcached -o pid= | head -1" } end context "when not running" do let(:stdout) { " 1407\n" } it { should be_running } its(:command) { should eq "ps -C memcached -o pid= | head -1" } end end
Version data entries
33 entries across 33 versions & 1 rubygems