OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / multiformats / go-multihash / test / sharness / t0010-basics.sh
diff --git a/vendor/github.com/multiformats/go-multihash/test/sharness/t0010-basics.sh b/vendor/github.com/multiformats/go-multihash/test/sharness/t0010-basics.sh
deleted file mode 100644 (file)
index 7fc4681..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2015 Christian Couder
-# MIT Licensed; see the LICENSE file in this repository.
-#
-
-test_description="Basic tests"
-
-. lib/test-lib.sh
-
-test_expect_success "current dir is writable" '
-       echo "It works!" >test.txt
-'
-
-test_expect_success "multihash is available" '
-       type multihash
-'
-
-test_expect_success "multihash help output looks good" '
-       multihash -h 2>help.txt &&
-       egrep -i "^usage:" help.txt >/dev/null &&
-       egrep -i "multihash .*options.*file" help.txt >/dev/null
-'
-
-test_done