Skip to content

Commit b3c26ed

Browse files
committed
test: Fix some tests that were skipped
1 parent a17c635 commit b3c26ed

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tests/do-plumbing-add-deps.bats

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
load 'util/init.sh'
44

55
@test "does nothing on no dependencies" {
6-
skip "bad test. assert_output '' is correct"
7-
86
local site='github.com'
97
local pkg='username/package'
108

@@ -17,7 +15,7 @@ load 'util/init.sh'
1715
run do-plumbing-add-deps "$site/$pkg"
1816

1917
assert_success
20-
assert_output ""
18+
assert_output ''
2119
}
2220

2321
@test "installs properly given package.sh dependencies" {

tests/do-plumbing-link-completions.bats

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ load 'util/init.sh'
2020
## BASH ##
2121

2222
@test "adds bash completions determined from package.sh" {
23-
skip "broken test?"
24-
2523
local site='github.com'
2624
local pkg='username/package'
2725

2826
test_util.setup_pkg "$pkg"; {
29-
echo "BASH_COMPLETIONS='ff'" > 'package.sh'
27+
echo "BASH_COMPLETIONS='ff/comp.bash'" > 'package.sh'
3028
mkdir 'ff'
3129
touch 'ff/comp.bash'
3230
}; test_util.finish_pkg

0 commit comments

Comments
 (0)