demarches-normaliennes/spec/models/cerfa_spec.rb

28 lines
853 B
Ruby
Raw Normal View History

2015-08-18 13:52:00 +02:00
require 'spec_helper'
describe Cerfa do
describe 'database columns' do
2015-08-20 17:30:17 +02:00
it { is_expected.to have_db_column(:content) }
2016-05-18 11:43:32 +02:00
it { is_expected.to have_db_column(:original_filename) }
it { is_expected.to have_db_column(:content_secure_token) }
it { is_expected.to have_db_column(:created_at) }
2015-08-18 13:52:00 +02:00
end
describe 'associations' do
it { is_expected.to belong_to(:dossier) }
it { is_expected.to belong_to(:user) }
2015-08-18 13:52:00 +02:00
end
describe 'empty?', vcr: { cassette_name: 'models_cerfa_empty' } do
2015-08-20 17:30:17 +02:00
subject { create(:cerfa, content: content) }
2015-08-18 16:30:57 +02:00
context 'when content exist' do
let(:content) { File.open('./spec/support/files/piece_justificative_388.pdf') }
2015-08-18 16:30:57 +02:00
it { expect(subject).not_to be_empty }
end
context 'when content is nil' do
let(:content) { nil }
it { expect(subject).to be_empty }
end
end
2015-08-20 17:30:17 +02:00
end