remove test of test helpers

This commit is contained in:
smikes 2014-12-21 12:05:37 -07:00
parent 98a48ef52a
commit 42befdc2c8

View File

@ -1,21 +0,0 @@
#!/usr/bin/env bats
load test_helper
@test 'foo' {
assert_unequal "1" "1" "should be unequal"
}
@test 'bar' {
assert_unequal "1" "1"
}
@test 'baz' {
assert_unequal "1" "1" ""
}
@test 'bletch' {
output="1\2"
IFS=$'\n' lines=($output)
assert_line 1 "3" "mismatch"
}