diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-07-27 16:32:32 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:57 -0300 |
commit | 611dab2e522e5e59cf09cd459a31686e65616863 (patch) | |
tree | 85e83a9fef746433ab5cdce643a147bc65f69311 /spec/models/board_spec.rb | |
parent | fa576d38bb23e0f2804e3feba959e0c6191dbbb0 (diff) | |
download | gitlab-ce-611dab2e522e5e59cf09cd459a31686e65616863.tar.gz |
Add Board model
Diffstat (limited to 'spec/models/board_spec.rb')
-rw-r--r-- | spec/models/board_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/models/board_spec.rb b/spec/models/board_spec.rb new file mode 100644 index 00000000000..1f32a84c340 --- /dev/null +++ b/spec/models/board_spec.rb @@ -0,0 +1,12 @@ +require 'rails_helper' + +describe Board do + describe 'relationships' do + it { is_expected.to belong_to(:project) } + it { is_expected.to have_many(:lists).dependent(:destroy) } + end + + describe 'validations' do + it { is_expected.to validate_presence_of(:project) } + end +end |