github.com/zignig/go-ipfs@v0.0.0-20141111235910-c9e5fdf55a52/test/t0030-mount.sh (about)

     1  #!/bin/sh
     2  #
     3  # Copyright (c) 2014 Christian Couder
     4  # MIT Licensed; see the LICENSE file in this repository.
     5  #
     6  
     7  test_description="Test mount command"
     8  
     9  . lib/test-lib.sh
    10  
    11  # if in travis CI, dont test mount (no fuse)
    12  if ! test_have_prereq FUSE; then
    13  	skip_all='skipping mount tests, fuse not available'
    14  
    15  	test_done
    16  fi
    17  
    18  test_launch_ipfs_mount
    19  
    20  test_kill_ipfs_mount
    21  
    22  test_done