summaryrefslogtreecommitdiff
path: root/spec/models/timelog_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-15 09:13:34 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-15 09:13:34 +0000
commit5cad106998d7826cead879f1122701040cb7bb38 (patch)
tree78ae3b440ca2c8949abf839accbfa5ce6e083544 /spec/models/timelog_spec.rb
parent908db9a2900d58d368592ad89b7ceefbdeba8c7f (diff)
downloadgitlab-ce-5cad106998d7826cead879f1122701040cb7bb38.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/timelog_spec.rb')
-rw-r--r--spec/models/timelog_spec.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/spec/models/timelog_spec.rb b/spec/models/timelog_spec.rb
index d6c31307e30..f96d02e6a82 100644
--- a/spec/models/timelog_spec.rb
+++ b/spec/models/timelog_spec.rb
@@ -21,7 +21,7 @@ RSpec.describe Timelog do
it { expect(subject.project_id).not_to be_nil }
- describe 'Issuable validation' do
+ describe 'validation' do
it 'is invalid if issue_id and merge_request_id are missing' do
subject.attributes = { issue: nil, merge_request: nil }
@@ -139,4 +139,14 @@ RSpec.describe Timelog do
time + 1.day
end
end
+
+ describe 'hooks' do
+ describe '.set_project' do
+ it 'populates project with issuable project' do
+ timelog = create(:issue_timelog, issue: issue)
+
+ expect(timelog.project_id).to be(timelog.issue.project_id)
+ end
+ end
+ end
end