Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-09-20 11:45:00 +0300
committerRémy Coutable <remy@rymai.me>2016-09-20 14:58:14 +0300
commitf6e5cc3c37f83044ca06d82aacf8ccb2796df724 (patch)
tree8a0e11ee7670f5d37e2c15f7b413eb98df942835 /spec
parent929ff01ac08db320402c31bb70b463007d1b379d (diff)
Add a view spec for projects/notes/_form
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'spec')
-rw-r--r--spec/features/projects/commits/note_spec.rb16
-rw-r--r--spec/views/projects/notes/_form.html.haml_spec.rb36
2 files changed, 36 insertions, 16 deletions
diff --git a/spec/features/projects/commits/note_spec.rb b/spec/features/projects/commits/note_spec.rb
deleted file mode 100644
index bc42b63c371..00000000000
--- a/spec/features/projects/commits/note_spec.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'spec_helper'
-
-describe 'Projects > Commits > Note' do
- let(:project) { create(:project) }
- let(:commit) { project.commit('7d3b0f7cff5f37573aea97cebfd5692ea1689924') }
-
- before do
- login_as :user
- project.team << [@user, :master]
- visit namespace_project_commit_path(project.namespace, project, commit.id)
- end
-
- it 'says that only markdown is supported, not slash commands' do
- expect(page).to have_content('Styling with Markdown is supported')
- end
-end
diff --git a/spec/views/projects/notes/_form.html.haml_spec.rb b/spec/views/projects/notes/_form.html.haml_spec.rb
new file mode 100644
index 00000000000..932d6756ad2
--- /dev/null
+++ b/spec/views/projects/notes/_form.html.haml_spec.rb
@@ -0,0 +1,36 @@
+require 'spec_helper'
+
+describe 'projects/notes/_form' do
+ include Devise::TestHelpers
+
+ let(:user) { create(:user) }
+ let(:project) { create(:empty_project) }
+
+ before do
+ project.team << [user, :master]
+ 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 only markdown is supported, not slash commands' do
+ expect(rendered).to have_content('Styling with Markdown and slash commands 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 slash commands' do
+ expect(rendered).to have_content('Styling with Markdown is supported')
+ end
+ end
+end