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-0.4.1 spec/convection/model/template/validate_description_spec.rb
convection-0.4.0 spec/convection/model/template/validate_description_spec.rb
convection-0.3.3.pre.beta.1 spec/convection/model/template/validate_description_spec.rb
convection-0.3.2 spec/convection/model/template/validate_description_spec.rb
convection-0.3.1 spec/convection/model/template/validate_description_spec.rb
convection-0.3.0 spec/convection/model/template/validate_description_spec.rb
convection-0.2.34.pre.beta.1 spec/convection/model/template/validate_description_spec.rb
convection-0.2.33 spec/convection/model/template/validate_description_spec.rb