12 lines
278 B
Ruby
12 lines
278 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe PieceJointe do
|
||
|
describe 'database columns' do
|
||
|
it { is_expected.to have_db_column(:content) }
|
||
|
end
|
||
|
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:dossier) }
|
||
|
it { is_expected.to belong_to(:type_piece_jointe) }
|
||
|
end
|
||
|
end
|