Sha256: 6d909bf99771defff7e7b69d1eaeba33a5189e9cd4eeee91bf2f24caa9a334ea
Contents?: true
Size: 521 Bytes
Versions: 7
Compression:
Stored size: 521 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
7 entries across 7 versions & 1 rubygems