mirror of
https://github.com/jimeh/dotify.git
synced 2026-02-19 10:06:39 +00:00
16 lines
403 B
Bash
Executable File
16 lines
403 B
Bash
Executable File
#! /usr/bin/env bash
|
|
source "../../test-helper.sh"
|
|
source "../../../src/lib/attributes/default-action.sh"
|
|
source "../../../src/lib/dotfile-commands/default_action.sh"
|
|
|
|
#
|
|
# default_action() tests
|
|
#
|
|
|
|
# Sets DOTIFY_OPT_DEFAULT_ACTION
|
|
default_action foo
|
|
assert 'echo $DOTIFY_ATTR_DEFAULT_ACTION' 'foo'
|
|
default_action foo bar
|
|
assert 'echo $DOTIFY_ATTR_DEFAULT_ACTION' 'foo bar'
|
|
assert_end "default_action()"
|