Sha256: 71b9ec1d99d3ca97e7698f95dea7e44e5697dd16ef159df515db5941c7aefcab
Contents?: true
Size: 408 Bytes
Versions: 37
Compression:
Stored size: 408 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Gentoo describe lxc('ct01') do it { should exist } its(:command) { should eq "lxc-ls -1 | grep -w ct01" } end describe lxc('invalid-ct') do it { should_not exist } end describe lxc('ct01') do it { should be_running } its(:command) { should eq "lxc-info -n ct01 -t RUNNING"} end describe lxc('invalid-ct') do it { should_not be_running } end
Version data entries
37 entries across 37 versions & 1 rubygems