Sha256: 4b6b36ebe00edc9c44ea311a1057a4e95f856ee74653797961092cad1a1d4818
Contents?: true
Size: 1.06 KB
Versions: 9
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe Arachni::Component::Options::String do before( :all ) do @opt = Arachni::Component::Options::String.new( '' ) end describe '#valid?' do it 'returns true' do @opt.valid?( 'test' ).should be_true @opt.valid?( 999 ).should be_true @opt.valid?( true ).should be_true end context 'when required but empty' do it 'returns false' do @opt.class.new( '', [true] ).valid?( nil ).should be_false end end end describe '#normalize' do it 'returns a string representation of the value' do @opt.normalize( 'test' ).should == 'test' end context 'when it is a file:// URL' do it 'uses that file\'s contents as a value' do @opt.normalize( 'file://' + __FILE__ ).should == IO.read( __FILE__ ) end end end describe '#type' do it 'returns the option type as a string' do @opt.type.should == 'string' end end end
Version data entries
9 entries across 9 versions & 1 rubygems