mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
29 lines
794 B
Bash
29 lines
794 B
Bash
#!/usr/bin/env bats
|
|
|
|
@test "x-path-append adds directory" {
|
|
mkdir -p "$BATS_TMPDIR/dir"
|
|
PATH="/usr/bin"
|
|
VERBOSE=1 source local/bin/x-path-append "$BATS_TMPDIR/dir"
|
|
[ "$PATH" = "/usr/bin:$BATS_TMPDIR/dir" ]
|
|
}
|
|
|
|
@test "x-path-prepend adds directory to start" {
|
|
mkdir -p "$BATS_TMPDIR/dir"
|
|
PATH="/usr/bin:/bin"
|
|
VERBOSE=1 source local/bin/x-path-prepend "$BATS_TMPDIR/dir"
|
|
[ "$PATH" = "$BATS_TMPDIR/dir:/usr/bin:/bin" ]
|
|
}
|
|
|
|
@test "x-path-remove removes directory" {
|
|
mkdir -p "$BATS_TMPDIR/dir"
|
|
PATH="$BATS_TMPDIR/dir:/usr/bin"
|
|
VERBOSE=1 source local/bin/x-path-remove "$BATS_TMPDIR/dir"
|
|
[ "$PATH" = "/usr/bin" ]
|
|
}
|
|
|
|
@test "x-path-append skips missing directory" {
|
|
PATH="/usr/bin"
|
|
VERBOSE=1 source local/bin/x-path-append "$BATS_TMPDIR/no-such"
|
|
[ "$PATH" = "/usr/bin" ]
|
|
}
|