2019-11-08 04:06:07 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe PersonalSnippet do
|
|
|
|
describe '#embeddable?' do
|
|
|
|
[
|
|
|
|
{ snippet: :public, embeddable: true },
|
|
|
|
{ snippet: :internal, embeddable: false },
|
|
|
|
{ snippet: :private, embeddable: false }
|
|
|
|
].each do |combination|
|
|
|
|
it 'returns true when snippet is public' do
|
|
|
|
snippet = build(:personal_snippet, combination[:snippet])
|
|
|
|
|
|
|
|
expect(snippet.embeddable?).to eq(combination[:embeddable])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-02-13 10:08:52 -05:00
|
|
|
|
|
|
|
it_behaves_like 'model with repository' do
|
|
|
|
let_it_be(:container) { create(:personal_snippet, :repository) }
|
|
|
|
let(:stubbed_container) { build_stubbed(:personal_snippet) }
|
|
|
|
let(:expected_full_path) { "@snippets/#{container.id}" }
|
|
|
|
let(:expected_web_url_path) { "snippets/#{container.id}" }
|
2020-04-22 08:09:29 -04:00
|
|
|
let(:expected_repo_url_path) { expected_web_url_path }
|
2020-02-13 10:08:52 -05:00
|
|
|
end
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|