Sha256: b7dd6e3d3c97f22d025f2f6d6db31f57482e107e886e9645ad069113bac54766
Contents?: true
Size: 590 Bytes
Versions: 316
Compression:
Stored size: 590 Bytes
Contents
require 'spec_helper' # Note that much of the functionality of the tdnf provider is already tested with yum provider tests, # as yum is the parent provider, via dnf describe Puppet::Type.type(:package).provider(:tdnf) do it_behaves_like 'RHEL package provider', described_class, 'tdnf' context 'default' do it 'should be the default provider on PhotonOS' do allow(Facter).to receive(:value).with(:osfamily).and_return(:redhat) allow(Facter).to receive(:value).with(:operatingsystem).and_return("PhotonOS") expect(described_class).to be_default end end end
Version data entries
316 entries across 316 versions & 1 rubygems