mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 20:07:45 +08:00
I moved installed things into own dirs bin and lib. @chriscool sorry to move things around again, the top level test dir was getting a bit clutterd.
23 lines
371 B
Bash
Executable File
23 lines
371 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2014 Christian Couder
|
|
# MIT Licensed; see the LICENSE file in this repository.
|
|
#
|
|
|
|
test_description="Test mount command"
|
|
|
|
. lib/test-lib.sh
|
|
|
|
# if in travis CI, dont test mount (no fuse)
|
|
if ! test_have_prereq FUSE; then
|
|
skip_all='skipping mount tests, fuse not available'
|
|
|
|
test_done
|
|
fi
|
|
|
|
test_launch_ipfs_mount
|
|
|
|
test_kill_ipfs_mount
|
|
|
|
test_done
|