2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe BlobViewer::Gemspec do
|
2017-05-17 12:27:30 -04:00
|
|
|
include FakeBlobHelpers
|
|
|
|
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { build_stubbed(:project) }
|
2017-05-17 12:27:30 -04:00
|
|
|
let(:data) do
|
|
|
|
<<-SPEC.strip_heredoc
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.name = "activerecord"
|
|
|
|
end
|
|
|
|
SPEC
|
|
|
|
end
|
2020-08-10 23:11:00 -04:00
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
let(:blob) { fake_blob(path: 'activerecord.gemspec', data: data) }
|
2019-12-18 19:08:01 -05:00
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
subject { described_class.new(blob) }
|
|
|
|
|
|
|
|
describe '#package_name' do
|
|
|
|
it 'returns the package name' do
|
|
|
|
expect(subject).to receive(:prepare!)
|
|
|
|
|
|
|
|
expect(subject.package_name).to eq('activerecord')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|