Sha256: c8314017a6af5f59d83b5ffaec0815bd8736c92014bc956ac17f5b89475b7f2a

Contents?: true

Size: 891 Bytes

Versions: 4

Compression:

Stored size: 891 Bytes

Contents

require_relative '../../../spec_helper'

describe Arachni::Component::Options::Path do
    before( :all ) do
        @opt = Arachni::Component::Options::Path.new( '' )
    end

    describe '#valid?' do
        context 'when the path exists' do
            it 'should return true' do
                @opt.valid?( __FILE__ ).should be_true
            end
        end
        context 'when the path does not exist' do
            it 'should return false' do
                @opt.valid?( __FILE__ + '22' ).should be_false
            end
        end
        context 'when required but empty' do
            it 'should return false' do
                @opt.class.new( '', [true] ).valid?( nil ).should be_false
            end
        end
    end

    describe '#type' do
        it 'should return the option type as a string' do
            @opt.type.should == 'path'
        end
    end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
arachni-0.4.1.3 spec/arachni/component/options/path_spec.rb
arachni-0.4.1.2 spec/arachni/component/options/path_spec.rb
arachni-0.4.1.1 spec/arachni/component/options/path_spec.rb
arachni-0.4.1 spec/arachni/component/options/path_spec.rb