spec/brcobranca/boleto/citibank_spec.rb in brcobranca-9.2.4 vs spec/brcobranca/boleto/citibank_spec.rb in brcobranca-10.0.0
- old
+ new
@@ -1,11 +1,10 @@
-# -*- encoding: utf-8 -*-
-#
+# frozen_string_literal: true
require 'spec_helper'
-RSpec.describe Brcobranca::Boleto::Citibank do #:nodoc:[all]
+RSpec.describe Brcobranca::Boleto::Citibank do # :nodoc:[all]
before do
@valid_attributes = {
valor: 10.00,
local_pagamento: 'QUALQUER BANCO ATÉ O VENCIMENTO',
cedente: 'Kivanio Barbosa',
@@ -162,35 +161,35 @@
@valid_attributes[:valor] = 135.00
@valid_attributes[:data_documento] = Date.parse('2008-02-01')
@valid_attributes[:data_vencimento] = Date.parse('2008-02-03')
@valid_attributes[:nosso_numero] = '00077700168'
boleto_novo = described_class.new(@valid_attributes)
- %w(pdf jpg tif png).each do |format|
+ %w[pdf jpg tif png].each do |format|
file_body = boleto_novo.send("to_#{format}".to_sym)
tmp_file = Tempfile.new(['foobar.', format])
tmp_file.puts file_body
tmp_file.close
- expect(File.exist?(tmp_file.path)).to be_truthy
- expect(File.stat(tmp_file.path).zero?).to be_falsey
+ expect(File).to exist(tmp_file.path)
+ expect(File.stat(tmp_file.path)).not_to be_zero
expect(File.delete(tmp_file.path)).to be(1)
- expect(File.exist?(tmp_file.path)).to be_falsey
+ expect(File).not_to exist(tmp_file.path)
end
end
it 'Gerar boleto nos formatos válidos' do
@valid_attributes[:valor] = 135.00
@valid_attributes[:data_documento] = Date.parse('2008-02-01')
@valid_attributes[:data_vencimento] = Date.parse('2008-02-03')
@valid_attributes[:nosso_numero] = '00077700168'
boleto_novo = described_class.new(@valid_attributes)
- %w(pdf jpg tif png).each do |format|
+ %w[pdf jpg tif png].each do |format|
file_body = boleto_novo.to(format)
tmp_file = Tempfile.new(['foobar.', format])
tmp_file.puts file_body
tmp_file.close
- expect(File.exist?(tmp_file.path)).to be_truthy
- expect(File.stat(tmp_file.path).zero?).to be_falsey
+ expect(File).to exist(tmp_file.path)
+ expect(File.stat(tmp_file.path)).not_to be_zero
expect(File.delete(tmp_file.path)).to be(1)
- expect(File.exist?(tmp_file.path)).to be_falsey
+ expect(File).not_to exist(tmp_file.path)
end
end
end