Sha256: 474deec2444c0d2b4d93c7684445d4255e646a4cc24f445f4bf7b9ccfbd7271d
Contents?: true
Size: 524 Bytes
Versions: 1
Compression:
Stored size: 524 Bytes
Contents
require 'spec_helper' require 'squib/args/paint' describe Squib::Args::Draw do let(:custom_colors) { {'foo' => 'abc'} } subject(:paint) {Squib::Args::Paint.new(custom_colors)} context 'alpha' do it 'can be a float' do args = {alpha: 0.6} paint.load!(args) expect(paint.alpha).to eq [0.6] end it 'raises exception when not a float' do args = {alpha: /6/} expect { paint.load!(args) }.to raise_error('alpha must respond to to_f') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
squib-0.9.0 | spec/args/paint_spec.rb |