This repository has been archived by the owner on Jan 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for testing some of the primitive shell scripts we will need
- Loading branch information
R. Tyler Croy
committed
Jan 4, 2018
1 parent
cb8cf63
commit de8fa32
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
check: vendor/bats | ||
./vendor/bats/bin/bats $(wildcard t/*.bats) $(wildcard t/**/*.bats) | ||
|
||
vendor/bats: | ||
mkdir -p vendor | ||
git clone --depth 1 \ | ||
-b v0.4.0 \ | ||
https://github.com/sstephenson/bats.git $@ | ||
|
||
|
||
.PHONY: check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bats | ||
|
||
@test "exact match" { | ||
} |