Sha256: 2cf14150dde9fa12458cdb4062764751d6dbd2ba3cc675e4de402d055be90596
Contents?: true
Size: 779 Bytes
Versions: 29
Compression:
Stored size: 779 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' RSpec.describe 'Brcobranca' do describe 'gerador' do context 'rghost' do before { Brcobranca.configuration.gerador = :rghost } it { expect(Brcobranca.configuration.gerador).to eql(:rghost) } end context 'prawn' do before { Brcobranca.configuration.gerador = :prawn } it { expect(Brcobranca.configuration.gerador).to eql(:prawn) } end end describe 'formato' do context 'pdf' do before { Brcobranca.configuration.formato = :pdf } it { expect(Brcobranca.configuration.formato).to eql(:pdf) } end context 'gif' do before { Brcobranca.configuration.formato = :gif } it { expect(Brcobranca.configuration.formato).to eql(:gif) } end end end
Version data entries
29 entries across 29 versions & 1 rubygems