Sha256: ab0d84afb3df94b9cb79d523acf8ed683e7116bb7ffd3f4dbd27ad766a36bc9b
Contents?: true
Size: 481 Bytes
Versions: 24
Compression:
Stored size: 481 Bytes
Contents
require 'spec_helper' # We load packaging.rb once, in spec_helper, to avoid reloading the library # and issuing warnings about already defined constants. describe 'Pkg' do it 'should require the utilities module, Pkg::Util' do expect(Pkg::Util).to_not be_nil end it 'should require the configuration module, Pkg::Config' do expect(Pkg::Config).to_not be_nil end it 'should require the tar library, Pkg::Tar' do expect(Pkg::Tar).to_not be_nil end end
Version data entries
24 entries across 24 versions & 1 rubygems