Sha256: 659d0b95abecebe10e56fddfa75d2623230abd26a7975064a70b80d2b4507e7d
Contents?: true
Size: 518 Bytes
Versions: 28
Compression:
Stored size: 518 Bytes
Contents
# -*- encoding: utf-8 -*- shared_examples_for 'busca_logotipo' do it 'para layout padrĂ£o' do boleto_novo = described_class.new expect(File.exist?(boleto_novo.logotipo)).to be_truthy expect(File.stat(boleto_novo.logotipo).zero?).to be_falsey end it 'para layout de carnĂª' do Brcobranca.configuration.gerador = :rghost_carne boleto_novo = described_class.new expect(File.exist?(boleto_novo.logotipo)).to be_truthy expect(File.stat(boleto_novo.logotipo).zero?).to be_falsey end end
Version data entries
28 entries across 28 versions & 1 rubygems