spec/unit/compressor_spec.rb [16:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          it "prefers tgz" do
            expect(described_class.for_current_system(%i{tgz foo})).to eq(Compressor::TGZ)
          end
        end

        context "when nothing is given" do
          it "returns null" do
            expect(described_class.for_current_system([])).to eq(Compressor::Null)
          end
        end
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/unit/compressor_spec.rb [32:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          it "prefers tgz" do
            expect(described_class.for_current_system(%i{tgz foo})).to eq(Compressor::TGZ)
          end
        end

        context "when nothing is given" do
          it "returns null" do
            expect(described_class.for_current_system([])).to eq(Compressor::Null)
          end
        end
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



