Sha256: 67115bf9347626c2a132b12a06d131d2dd3774e703b1267863110074695fb77b
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe 'RGhost' do before(:each) do @valid_attributes = { especie_documento: 'DM', moeda: '9', data_documento: Date.today, dias_vencimento: 1, aceite: 'S', quantidade: 1, valor: 0.0, local_pagamento: 'QUALQUER BANCO ATÉ O VENCIMENTO', cedente: 'Kivanio Barbosa', documento_cedente: '12345678912', sacado: 'Claudio Pozzebom', sacado_documento: '12345678900', agencia: '4042', conta_corrente: '61900', convenio: 12_387_989, numero_documento: '777700168' } end it 'Testar se RGhost e GhostScript estão instalados' do # RGhost::Config.config_platform expect(File.exist?(RGhost::Config::GS[:path])).to be_truthy expect(File.executable?(RGhost::Config::GS[:path])).to be_truthy s = `#{RGhost::Config::GS[:path]} -v` expect(s).to match(/^GPL Ghostscript/) s = `#{RGhost::Config::GS[:path]} --version` expect(s).to match(/[8-9]\.[0-9]/) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brcobranca-4.1.0 | spec/brcobranca/rghost_spec.rb |
brcobranca-4.0.0 | spec/brcobranca/rghost_spec.rb |