mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-17 17:41:50 +00:00
21 lines
284 B
Bash
21 lines
284 B
Bash
#!/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"
|
|
} |