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

test_description="Test mount command"

. ./test-lib.sh

11 12 13 14 15 16 17
# if in travis CI, dont test mount (no fuse)
if test "$TEST_NO_FUSE" = 1; then
  skip_all='skipping mount tests, fuse not available'

  test_done
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