Sha256: 737bcf49b48dd5486d2daffa5303ad816ffe2e6b3f1ad576f2486009ce25b86c

Contents?: true

Size: 841 Bytes

Versions: 68

Compression:

Stored size: 841 Bytes

Contents

require 'spec_helper'

class Convection::Model::Template
  describe '#validate_description' do
    context 'with a regular Description bytesize' do
      subject do
        Convection.template do
          description '0' * CF_MAX_DESCRIPTION_BYTESIZE
        end
      end

      it 'does not raise an excessive description error' do
        rendered = subject.render
        expect { subject.validate(rendered) }.to_not raise_error
      end
    end

    context 'with excessive Description bytesize' do
      subject do
        Convection.template do
          description '0' * (CF_MAX_DESCRIPTION_BYTESIZE + 1)
        end
      end

      it 'raises an excessive description error' do
        rendered = subject.render
        expect { subject.validate(rendered) }.to raise_error(ExcessiveDescriptionError)
      end
    end
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
convection-2.3.1 spec/convection/model/template/validate_description_spec.rb
convection-2.3.0 spec/convection/model/template/validate_description_spec.rb
convection-2.2.29 spec/convection/model/template/validate_description_spec.rb
convection-2.2.28.pre.beta.2 spec/convection/model/template/validate_description_spec.rb
convection-2.2.28.pre.beta.1 spec/convection/model/template/validate_description_spec.rb
convection-2.2.27 spec/convection/model/template/validate_description_spec.rb
convection-2.2.26 spec/convection/model/template/validate_description_spec.rb
convection-2.2.25 spec/convection/model/template/validate_description_spec.rb
convection-2.2.24 spec/convection/model/template/validate_description_spec.rb
convection-2.2.23 spec/convection/model/template/validate_description_spec.rb
convection-2.2.22 spec/convection/model/template/validate_description_spec.rb
convection-2.2.21 spec/convection/model/template/validate_description_spec.rb
convection-2.2.20 spec/convection/model/template/validate_description_spec.rb
convection-2.2.19 spec/convection/model/template/validate_description_spec.rb
convection-2.2.18 spec/convection/model/template/validate_description_spec.rb
convection-2.2.17 spec/convection/model/template/validate_description_spec.rb
convection-2.2.16 spec/convection/model/template/validate_description_spec.rb
convection-2.2.15 spec/convection/model/template/validate_description_spec.rb
convection-2.2.14 spec/convection/model/template/validate_description_spec.rb
convection-2.2.13 spec/convection/model/template/validate_description_spec.rb