diff options
author | Andreas Brandl <abrandl@gitlab.com> | 2018-02-04 20:46:14 +0100 |
---|---|---|
committer | Andreas Brandl <abrandl@gitlab.com> | 2018-02-05 16:16:57 +0100 |
commit | 24a11c957a34d2f22c0276fa8dcc3e2c23d1f164 (patch) | |
tree | de56172ee3b0627f5bebb74a8d08ea13c3dc3aa7 /spec/models/todo_spec.rb | |
parent | d07addbf6e3841ae31a7e62ecbb29523f4d8c859 (diff) | |
download | gitlab-ce-24a11c957a34d2f22c0276fa8dcc3e2c23d1f164.tar.gz |
Set todos#author_id to NOT NULL.32282-add-foreign-keys-to-todos
Diffstat (limited to 'spec/models/todo_spec.rb')
-rw-r--r-- | spec/models/todo_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/models/todo_spec.rb b/spec/models/todo_spec.rb index 3e8f3848eca..bd498269798 100644 --- a/spec/models/todo_spec.rb +++ b/spec/models/todo_spec.rb @@ -20,6 +20,7 @@ describe Todo do it { is_expected.to validate_presence_of(:action) } it { is_expected.to validate_presence_of(:target_type) } it { is_expected.to validate_presence_of(:user) } + it { is_expected.to validate_presence_of(:author) } context 'for commits' do subject { described_class.new(target_type: 'Commit') } |