demarches-normaliennes/spec/models/cerfa_spec.rb

16 lines
458 B
Ruby
Raw Normal View History

2015-08-18 13:52:00 +02:00
require 'spec_helper'
describe Cerfa do
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