Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
sharness: add t0010-basic-commands.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscool committed Oct 3, 2016
1 parent 1b6fca8 commit c264f74
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions test/sharness/t0010-basic-commands.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/sh
#
# Copyright (c) 2014 Christian Couder
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test installation and some basic commands"

. lib/test-lib.sh

test_expect_success "current dir is writable" '
echo "It works!" >test.txt
'

test_expect_success "ipfs version succeeds" '
ipfs version >version.txt
'

test_expect_success "ipfs version shows js-ipfs" '
grep "js-ipfs" version.txt >/dev/null ||
test_fsh cat version.txt
'

test_expect_success "ipfs version output looks good" '
egrep "^js-ipfs version: [0-9]+\.[0-9]+\.[0-9]" version.txt >/dev/null ||
test_fsh cat version.txt
'

test_done

0 comments on commit c264f74

Please sign in to comment.