diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8be89b1 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +tests: ~/.zen/secret.june shellcheck-specs shellspec-specs + +shellcheck-%: + shellcheck $*/* + +shellspec-%: + shellspec $* diff --git a/specs/astrXbian_spec.sh b/specs/astrXbian_spec.sh new file mode 100644 index 0000000..6e57e6f --- /dev/null +++ b/specs/astrXbian_spec.sh @@ -0,0 +1,15 @@ +#shellcheck shell=sh + +Describe "AstrXbian" + Describe "install()" + install() { + echo # + } + + It "installs world, but not implemented" + Pending "You should implement install function" + When call install world + The output should eq "amen" + End + End +End