mirror of
https://github.com/jimeh/dotify.git
synced 2026-02-19 10:06:39 +00:00
14 lines
278 B
Bash
Executable File
14 lines
278 B
Bash
Executable File
#! /usr/bin/env bash
|
|
source "../../test-helper.sh"
|
|
source "../../../src/lib/helpers/trim.sh"
|
|
|
|
#
|
|
# trim() tests
|
|
#
|
|
|
|
assert 'trim " foo bar "' "foo bar"
|
|
assert 'trim "foo bar "' "foo bar"
|
|
assert 'trim " foo bar"' "foo bar"
|
|
assert 'trim "foo bar"' "foo bar"
|
|
assert_end "trim()"
|