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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-26 11:01:16 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-26 11:01:16 +0400
commit05c9ab94c2377e0e0b7933c15fb91d11f8295441 (patch)
treeec26512bf6f6c9fbcc343cc8e5074118d94ab776 /spec
parent285ed33718cc86e65dd6ef11f75aa2a42018be16 (diff)
parentcce80d04fe0271709170222d3b5774c39203ea07 (diff)
Merge branch 'refactor-author-id-of-changes' into 'master'
Remove author_id_of_changes To prevent confusion because we already have `current_user`
Diffstat (limited to 'spec')
-rw-r--r--spec/models/concerns/issuable_spec.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/spec/models/concerns/issuable_spec.rb b/spec/models/concerns/issuable_spec.rb
index 0827e4f162b..9cbc8990676 100644
--- a/spec/models/concerns/issuable_spec.rb
+++ b/spec/models/concerns/issuable_spec.rb
@@ -25,11 +25,6 @@ describe Issue, "Issuable" do
it { described_class.should respond_to(:assigned) }
end
- it "has an :author_id_of_changes accessor" do
- issue.should respond_to(:author_id_of_changes)
- issue.should respond_to(:author_id_of_changes=)
- end
-
describe ".search" do
let!(:searchable_issue) { create(:issue, title: "Searchable issue") }