This commit is contained in:
aynic.os 2021-05-09 14:50:17 +02:00
parent aebacbf56f
commit b76111f017
2 changed files with 22 additions and 0 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
tests: ~/.zen/secret.june shellcheck-specs shellspec-specs
shellcheck-%:
shellcheck $*/*
shellspec-%:
shellspec $*

15
specs/astrXbian_spec.sh Normal file
View File

@ -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