Sha256: 68818897af156dd295ad7cee5581054cc4a5843041b1de0e4db22a47604bf420

Contents?: true

Size: 709 Bytes

Versions: 7

Compression:

Stored size: 709 Bytes

Contents

require_relative '../spec_helper'
require 'cliutils/messaging'
require 'cliutils/prefs/pref_validators/pref_validator'
require 'cliutils/prefs/pref_validators/filepath_exists_validator'

describe CLIUtils::FilepathExistsValidator do
  it 'confirms that its input is an existing filepath' do
    v = CLIUtils::FilepathExistsValidator.new
    v.validate('/tmp')
    expect(v.is_valid).to be_true
    expect(v.message).to eq('Path does not exist locally: /tmp')
  end

  it 'confirms that its input is not an existing filepath' do
    v = CLIUtils::FilepathExistsValidator.new
    v.validate('!@&^')
    expect(v.is_valid).to_not be_true
    expect(v.message).to eq('Path does not exist locally: !@&^')
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cliutils-2.2.6 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.5 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.4 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.3 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.2 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.1 spec/validator/filepath_exists_validator_spec.rb
cliutils-2.2.0 spec/validator/filepath_exists_validator_spec.rb