2015-09-11 14:41:01 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::ProjectSearchResults do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:query) { 'hello world' }
|
|
|
|
|
|
|
|
describe 'initialize with empty ref' do
|
|
|
|
let(:results) { Gitlab::ProjectSearchResults.new(project.id, query, '') }
|
|
|
|
|
|
|
|
it { expect(results.project).to eq(project) }
|
|
|
|
it { expect(results.repository_ref).to be_nil }
|
2015-11-26 14:37:03 +05:30
|
|
|
it { expect(results.query).to eq('hello world') }
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'initialize with ref' do
|
|
|
|
let(:ref) { 'refs/heads/test' }
|
|
|
|
let(:results) { Gitlab::ProjectSearchResults.new(project.id, query, ref) }
|
|
|
|
|
|
|
|
it { expect(results.project).to eq(project) }
|
|
|
|
it { expect(results.repository_ref).to eq(ref) }
|
2015-11-26 14:37:03 +05:30
|
|
|
it { expect(results.query).to eq('hello world') }
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
end
|