36 lines
939 B
Ruby
36 lines
939 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'shared/notes/_form' do
|
|
include Devise::Test::ControllerHelpers
|
|
|
|
let(:user) { create(:user) }
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
before do
|
|
project.add_master(user)
|
|
assign(:project, project)
|
|
assign(:note, note)
|
|
|
|
allow(view).to receive(:current_user).and_return(user)
|
|
|
|
render
|
|
end
|
|
|
|
%w[issue merge_request].each do |noteable|
|
|
context "with a note on #{noteable}" do
|
|
let(:note) { build(:"note_on_#{noteable}", project: project) }
|
|
|
|
it 'says that markdown and quick actions are supported' do
|
|
expect(rendered).to have_content('Markdown and quick actions are supported')
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with a note on a commit' do
|
|
let(:note) { build(:note_on_commit, project: project) }
|
|
|
|
it 'says that only markdown is supported, not quick actions' do
|
|
expect(rendered).to have_content('Markdown is supported')
|
|
end
|
|
end
|
|
end
|