Sha256: 25c0dd89de12356ae86bbb871038d6854d844535f8b030859a4d2ce0b4b3d4d0
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') module Brcobranca module Boleto module Template describe Util do it "should get correct file" do boleto_novo = BancoBanespa.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoBradesco.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoBrasil.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoHsbc.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoItau.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoReal.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = BancoUnibanco.new File.exist?(boleto_novo.monta_logo).should be_true File.stat(boleto_novo.monta_logo).zero?.should be_false boleto_novo = Brcobranca::Boleto::Base.new boleto_novo.monta_logo.should be_false end end end end end
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
kivanio-brcobranca-2.0.6 | spec/brcobranca/template/util_spec.rb |
tulios-brcobranca-rails2-2.0.8 | spec/brcobranca/template/util_spec.rb |
brcobranca-2.0.6 | spec/brcobranca/template/util_spec.rb |