0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00
n/test/tests/lookup.bats

39 lines
758 B
Bash

#!/usr/bin/env bats
load shared-functions
function setup() {
unset_n_env
}
@test "n --lts" {
run n --lts
[ "${status}" -eq 0 ]
local expected_version
expected_version="$(display_remote_version lts)"
expected_version="${expected_version#v}"
[ "${output}" = "${expected_version}" ]
}
@test "n --stable" {
run n --stable
[ "${status}" -eq 0 ]
local expected_version
expected_version="$(display_remote_version lts)"
expected_version="${expected_version#v}"
[ "${output}" = "${expected_version}" ]
}
@test "n --latest" {
run n --latest
[ "${status}" -eq 0 ]
local expected_version
expected_version="$(display_remote_version latest)"
expected_version="${expected_version#v}"
[ "${output}" = "${expected_version}" ]
}