Reorganize helpers

This commit is contained in:
2013-10-03 23:42:20 +01:00
parent 1f2373bab3
commit 4b84e35b2f
6 changed files with 3 additions and 3 deletions

9
test/lib/helpers/trim-test.sh Executable file
View File

@@ -0,0 +1,9 @@
#! /usr/bin/env bash
source "../test-helper.sh"
source "../../src/lib/trim.sh"
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()"