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.2.12 spec/convection/model/template/validate_description_spec.rb
convection-2.2.11 spec/convection/model/template/validate_description_spec.rb
convection-2.2.10 spec/convection/model/template/validate_description_spec.rb
convection-2.2.9 spec/convection/model/template/validate_description_spec.rb
convection-2.2.8 spec/convection/model/template/validate_description_spec.rb
convection-2.2.7 spec/convection/model/template/validate_description_spec.rb
convection-2.2.6 spec/convection/model/template/validate_description_spec.rb
convection-2.2.5 spec/convection/model/template/validate_description_spec.rb
convection-2.2.4 spec/convection/model/template/validate_description_spec.rb
convection-2.2.3 spec/convection/model/template/validate_description_spec.rb
convection-2.2.2 spec/convection/model/template/validate_description_spec.rb
convection-2.2.1 spec/convection/model/template/validate_description_spec.rb
convection-2.2.0 spec/convection/model/template/validate_description_spec.rb
convection-2.1.2 spec/convection/model/template/validate_description_spec.rb
convection-2.1.1 spec/convection/model/template/validate_description_spec.rb
convection-2.1.0 spec/convection/model/template/validate_description_spec.rb
convection-2.0.0 spec/convection/model/template/validate_description_spec.rb
convection-1.1.7 spec/convection/model/template/validate_description_spec.rb
convection-1.1.5 spec/convection/model/template/validate_description_spec.rb
convection-1.1.4 spec/convection/model/template/validate_description_spec.rb