t0030-mount.sh 371 Bytes
Newer Older
Christian Couder's avatar
Christian Couder committed
1 2 3 4 5 6 7 8
#!/bin/sh
#
# Copyright (c) 2014 Christian Couder
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test mount command"

9
. lib/test-lib.sh
Christian Couder's avatar
Christian Couder committed
10

11
# if in travis CI, dont test mount (no fuse)
12 13
if ! test_have_prereq FUSE; then
	skip_all='skipping mount tests, fuse not available'
14

15
	test_done
16 17
fi

18
test_launch_ipfs_mount
Christian Couder's avatar
Christian Couder committed
19

20
test_kill_ipfs_mount
Christian Couder's avatar
Christian Couder committed
21 22

test_done