2016-07-27 15:32:32 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Board do
|
|
|
|
describe 'relationships' do
|
|
|
|
it { is_expected.to belong_to(:project) }
|
2016-07-31 19:48:00 -04:00
|
|
|
it { is_expected.to have_many(:lists).order(list_type: :asc, position: :asc).dependent(:delete_all) }
|
2016-07-27 15:32:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
|
|
end
|
|
|
|
end
|