spec/unit/packagers/pkg_spec.rb [447:462]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                      /opt/#{project.name}/embedded/lib/lib.6.dylib (compatibility version 7.0.0, current version 7.4.0)
                      /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1281.0.0)
          EOH
        end
        let(:shellout) { Mixlib::ShellOut.new }

        before do
          allow(shellout).to receive(:run_command)
          allow(shellout).to receive(:stdout)
            .and_return(stdout)
          allow(subject).to receive(:shellout!)
            .with("otool -L #{file}")
            .and_return(shellout)
        end

        it "returns empty array" do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/unit/packagers/pkg_spec.rb [474:488]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            /opt/#{project.name}/embedded/lib/lib.dylib:
                      /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1281.0.0)
          EOH
        end
        let(:shellout) { Mixlib::ShellOut.new }
        before do
          allow(shellout).to receive(:run_command)
          allow(shellout).to receive(:stdout)
            .and_return(stdout)
          allow(subject).to receive(:shellout!)
            .with("otool -L #{file}")
            .and_return(shellout)
        end

        it "returns empty array" do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



