From dee52393b5b76c5d30addbfe7ba43e718b67a371 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Thu, 16 Apr 2015 16:25:25 -0400 Subject: [PATCH] Correct usage of `subject` in specs --- spec/models/commit_spec.rb | 3 ++- spec/models/issue_spec.rb | 3 ++- spec/models/merge_request_spec.rb | 5 +++-- spec/models/note_spec.rb | 3 ++- spec/support/mentionable_shared_examples.rb | 2 +- spec/support/taskable_shared_examples.rb | 2 +- 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb index 11cc7762ce4..2cc23efb986 100644 --- a/spec/models/commit_spec.rb +++ b/spec/models/commit_spec.rb @@ -69,8 +69,9 @@ eos end it_behaves_like 'a mentionable' do - let(:subject) { commit } let(:mauthor) { create :user, email: commit.author_email } + subject { commit } + let(:backref_text) { "commit #{subject.id}" } let(:set_mentionable_text) { ->(txt){ subject.stub(safe_message: txt) } } diff --git a/spec/models/issue_spec.rb b/spec/models/issue_spec.rb index 087e40c3d84..20d823b40e5 100644 --- a/spec/models/issue_spec.rb +++ b/spec/models/issue_spec.rb @@ -56,7 +56,8 @@ describe Issue do end it_behaves_like 'an editable mentionable' do - let(:subject) { create :issue, project: mproject } + subject { create(:issue, project: project) } + let(:backref_text) { "issue ##{subject.iid}" } let(:set_mentionable_text) { ->(txt){ subject.description = txt } } end diff --git a/spec/models/merge_request_spec.rb b/spec/models/merge_request_spec.rb index d40503d791c..3fcd063efe8 100644 --- a/spec/models/merge_request_spec.rb +++ b/spec/models/merge_request_spec.rb @@ -116,12 +116,13 @@ describe MergeRequest do end it_behaves_like 'an editable mentionable' do - let(:subject) { create :merge_request, source_project: mproject, target_project: mproject } + subject { create(:merge_request, source_project: project, target_project: project) } + let(:backref_text) { "merge request !#{subject.iid}" } let(:set_mentionable_text) { ->(txt){ subject.title = txt } } end it_behaves_like 'a Taskable' do - let(:subject) { create :merge_request, :simple } + subject { create :merge_request, :simple } end end diff --git a/spec/models/note_spec.rb b/spec/models/note_spec.rb index a7bf5081d5b..e7e6717e775 100644 --- a/spec/models/note_spec.rb +++ b/spec/models/note_spec.rb @@ -629,8 +629,9 @@ describe Note do end it_behaves_like 'an editable mentionable' do + subject { create :note, noteable: issue, project: project } + let(:issue) { create :issue, project: project } - let(:subject) { create :note, noteable: issue, project: project } let(:backref_text) { issue.gfm_reference } let(:set_mentionable_text) { ->(txt) { subject.note = txt } } end diff --git a/spec/support/mentionable_shared_examples.rb b/spec/support/mentionable_shared_examples.rb index 305592fa5a6..35ed126b5bc 100644 --- a/spec/support/mentionable_shared_examples.rb +++ b/spec/support/mentionable_shared_examples.rb @@ -1,6 +1,6 @@ # Specifications for behavior common to all Mentionable implementations. # Requires a shared context containing: -# - let(:subject) { "the mentionable implementation" } +# - subject { "the mentionable implementation" } # - let(:backref_text) { "the way that +subject+ should refer to itself in backreferences " } # - let(:set_mentionable_text) { lambda { |txt| "block that assigns txt to the subject's mentionable_text" } } diff --git a/spec/support/taskable_shared_examples.rb b/spec/support/taskable_shared_examples.rb index 490f453d468..8e5e3a8aafc 100644 --- a/spec/support/taskable_shared_examples.rb +++ b/spec/support/taskable_shared_examples.rb @@ -1,7 +1,7 @@ # Specs for task state functionality for issues and merge requests. # # Requires a context containing: -# let(:subject) { Issue or MergeRequest } +# subject { Issue or MergeRequest } shared_examples 'a Taskable' do before do subject.description = <