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
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/system_note_service_spec.rb')
-rw-r--r--spec/services/system_note_service_spec.rb76
1 files changed, 38 insertions, 38 deletions
diff --git a/spec/services/system_note_service_spec.rb b/spec/services/system_note_service_spec.rb
index dfa5175b7d8..eca5a418f2a 100644
--- a/spec/services/system_note_service_spec.rb
+++ b/spec/services/system_note_service_spec.rb
@@ -253,8 +253,8 @@ describe SystemNoteService, services: true do
it_behaves_like 'a system note'
it 'sets the note text' do
- expect(subject.note)
- .to eq "changed title from **{-Old title-}** to **{+Lorem ipsum+}**"
+ expect(subject.note).
+ to eq "changed title from **{-Old title-}** to **{+Lorem ipsum+}**"
end
end
end
@@ -388,8 +388,8 @@ describe SystemNoteService, services: true do
context 'when mentioner is not a MergeRequest' do
it 'is falsey' do
mentioner = noteable.dup
- expect(described_class.cross_reference_disallowed?(noteable, mentioner))
- .to be_falsey
+ expect(described_class.cross_reference_disallowed?(noteable, mentioner)).
+ to be_falsey
end
end
@@ -399,14 +399,14 @@ describe SystemNoteService, services: true do
it 'is truthy when noteable is in commits' do
expect(mentioner).to receive(:commits).and_return([noteable])
- expect(described_class.cross_reference_disallowed?(noteable, mentioner))
- .to be_truthy
+ expect(described_class.cross_reference_disallowed?(noteable, mentioner)).
+ to be_truthy
end
it 'is falsey when noteable is not in commits' do
expect(mentioner).to receive(:commits).and_return([])
- expect(described_class.cross_reference_disallowed?(noteable, mentioner))
- .to be_falsey
+ expect(described_class.cross_reference_disallowed?(noteable, mentioner)).
+ to be_falsey
end
end
@@ -414,8 +414,8 @@ describe SystemNoteService, services: true do
let(:noteable) { ExternalIssue.new('EXT-1234', project) }
it 'is truthy' do
mentioner = noteable.dup
- expect(described_class.cross_reference_disallowed?(noteable, mentioner))
- .to be_truthy
+ expect(described_class.cross_reference_disallowed?(noteable, mentioner)).
+ to be_truthy
end
end
@@ -425,13 +425,13 @@ describe SystemNoteService, services: true do
it 'is truthy when issue is closed' do
issue.close
- expect(described_class.cross_reference_disallowed?(issue, project.commit))
- .to be_truthy
+ expect(described_class.cross_reference_disallowed?(issue, project.commit)).
+ to be_truthy
end
it 'is falsey when issue is open' do
- expect(described_class.cross_reference_disallowed?(issue, project.commit))
- .to be_falsy
+ expect(described_class.cross_reference_disallowed?(issue, project.commit)).
+ to be_falsy
end
end
@@ -441,20 +441,20 @@ describe SystemNoteService, services: true do
it 'is truthy when merge request is closed' do
allow(merge_request).to receive(:closed?).and_return(:true)
- expect(described_class.cross_reference_disallowed?(merge_request, project.commit))
- .to be_truthy
+ expect(described_class.cross_reference_disallowed?(merge_request, project.commit)).
+ to be_truthy
end
it 'is truthy when merge request is merged' do
allow(merge_request).to receive(:closed?).and_return(:true)
- expect(described_class.cross_reference_disallowed?(merge_request, project.commit))
- .to be_truthy
+ expect(described_class.cross_reference_disallowed?(merge_request, project.commit)).
+ to be_truthy
end
it 'is falsey when merge request is open' do
- expect(described_class.cross_reference_disallowed?(merge_request, project.commit))
- .to be_falsy
+ expect(described_class.cross_reference_disallowed?(merge_request, project.commit)).
+ to be_falsy
end
end
end
@@ -470,13 +470,13 @@ describe SystemNoteService, services: true do
end
it 'is truthy when already mentioned' do
- expect(described_class.cross_reference_exists?(noteable, commit0))
- .to be_truthy
+ expect(described_class.cross_reference_exists?(noteable, commit0)).
+ to be_truthy
end
it 'is falsey when not already mentioned' do
- expect(described_class.cross_reference_exists?(noteable, commit1))
- .to be_falsey
+ expect(described_class.cross_reference_exists?(noteable, commit1)).
+ to be_falsey
end
context 'legacy capitalized cross reference' do
@@ -487,8 +487,8 @@ describe SystemNoteService, services: true do
end
it 'is truthy when already mentioned' do
- expect(described_class.cross_reference_exists?(noteable, commit0))
- .to be_truthy
+ expect(described_class.cross_reference_exists?(noteable, commit0)).
+ to be_truthy
end
end
end
@@ -500,13 +500,13 @@ describe SystemNoteService, services: true do
end
it 'is truthy when already mentioned' do
- expect(described_class.cross_reference_exists?(commit0, commit1))
- .to be_truthy
+ expect(described_class.cross_reference_exists?(commit0, commit1)).
+ to be_truthy
end
it 'is falsey when not already mentioned' do
- expect(described_class.cross_reference_exists?(commit1, commit0))
- .to be_falsey
+ expect(described_class.cross_reference_exists?(commit1, commit0)).
+ to be_falsey
end
context 'legacy capitalized cross reference' do
@@ -517,8 +517,8 @@ describe SystemNoteService, services: true do
end
it 'is truthy when already mentioned' do
- expect(described_class.cross_reference_exists?(commit0, commit1))
- .to be_truthy
+ expect(described_class.cross_reference_exists?(commit0, commit1)).
+ to be_truthy
end
end
end
@@ -533,8 +533,8 @@ describe SystemNoteService, services: true do
end
it 'is true when a fork mentions an external issue' do
- expect(described_class.cross_reference_exists?(noteable, commit2))
- .to be true
+ expect(described_class.cross_reference_exists?(noteable, commit2)).
+ to be true
end
context 'legacy capitalized cross reference' do
@@ -544,8 +544,8 @@ describe SystemNoteService, services: true do
end
it 'is true when a fork mentions an external issue' do
- expect(described_class.cross_reference_exists?(noteable, commit2))
- .to be true
+ expect(described_class.cross_reference_exists?(noteable, commit2)).
+ to be true
end
end
end
@@ -771,8 +771,8 @@ describe SystemNoteService, services: true do
it 'creates a new note in the discussion' do
# we need to completely rebuild the merge request object, or the `@discussions` on the merge request are not reloaded.
- expect { SystemNoteService.discussion_continued_in_issue(discussion, project, user, issue) }
- .to change { reloaded_merge_request.discussions.first.notes.size }.by(1)
+ expect { SystemNoteService.discussion_continued_in_issue(discussion, project, user, issue) }.
+ to change { reloaded_merge_request.discussions.first.notes.size }.by(1)
end
it 'mentions the created issue in the system note' do