Sha256: 3eaf17b73ed9b227385edab62d36bbeadaa18d187d713d2241016d6fb9e0f9ef

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe Hashmake::HashArgSpec do
  it 'should not raise ArgumentError if :reqd is false and a :default value is given' do
    hash = {
      :reqd => false, :key => :some_variable, :type => String, :default => ""
    }
    
    lambda { Hashmake::HashArgSpec.new hash }.should_not raise_error(ArgumentError)
  end
  
  context '#validate_value' do
    before :each do
      @arg_spec = HashArgSpec.new(:reqd => true, :type => Fixnum, :validator => ->(a){ a > 0})
    end
    
    context 'value given is correct type' do
      context 'value given is valid' do
        it 'should not raise ArgumentError' do
          lambda { @arg_spec.validate_value(:a => 1, :b => 2) }.should_not raise_error
        end
      end
      
      context 'value given is not valid' do
        it 'should raise ArgumentError' do
          lambda { @arg_spec.validate_value(:a => 0, :b => 2) }.should raise_error(ArgumentError)
        end
      end
    end
    
    context 'value given is not correct type' do
      context 'value given is valid' do
        it 'should raise ArgumentError' do
          lambda { @arg_spec.validate_value(:a => 1.0, :b => 2) }.should raise_error(ArgumentError)
        end
      end
      
      context 'value given is not valid' do
        it 'should raise ArgumentError' do
          lambda { @arg_spec.validate_value(:a => 0.0, :b => 2) }.should raise_error(ArgumentError)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hashmake-0.2.1 spec/hash_arg_spec_spec.rb
hashmake-0.2.0 spec/hash_arg_spec_spec.rb