Sha256: dfe725305a536348480ad4ef6374174e7255af4b014ae5b759a0a4ec202c9047
Contents?: true
Size: 496 Bytes
Versions: 42
Compression:
Stored size: 496 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::RedHat describe 'Serverspec yumrepo matchers of Red Hat family' do describe 'exist' do describe yumrepo('epel') do it { should exist } end describe yumrepo('invalid-repository') do it { should_not exist } end end describe 'be_enabled' do describe yumrepo('epel') do it { should be_enabled } end describe yumrepo('invalid-repository') do it { should_not be_enabled } end end end
Version data entries
42 entries across 42 versions & 1 rubygems