Sha256: f2a884026e5a32a4cae7720f3a24f485e3d71d8e94ff0e8b25f99090bfc412ff

Contents?: true

Size: 510 Bytes

Versions: 56

Compression:

Stored size: 510 Bytes

Contents

require 'spec_helper'

describe Puppet::Type.type(:package).provider(:pip3) do

  it { is_expected.to be_installable }
  it { is_expected.to be_uninstallable }
  it { is_expected.to be_upgradeable }
  it { is_expected.to be_versionable }
  it { is_expected.to be_install_options }

  it "should inherit most things from pip provider" do
    expect(described_class < Puppet::Type.type(:package).provider(:pip))
  end

  it "should use pip3 command" do
    expect(described_class.cmd).to eq(["pip3"])
  end

end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
puppet-6.4.2 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.2-x86-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.2-x64-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.2-universal-darwin spec/unit/provider/package/pip3_spec.rb
puppet-6.0.9 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.9-x86-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.9-x64-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.9-universal-darwin spec/unit/provider/package/pip3_spec.rb
puppet-5.5.14 spec/unit/provider/package/pip3_spec.rb
puppet-5.5.14-x86-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-5.5.14-x64-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-5.5.14-universal-darwin spec/unit/provider/package/pip3_spec.rb
puppet-6.4.1 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.1-x86-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.1-x64-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.4.1-universal-darwin spec/unit/provider/package/pip3_spec.rb
puppet-6.0.8 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.8-x86-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.8-x64-mingw32 spec/unit/provider/package/pip3_spec.rb
puppet-6.0.8-universal-darwin spec/unit/provider/package/pip3_spec.rb