astrXbian/specs/astrXbian_spec.sh

20 lines
400 B
Bash

#shellcheck shell=sh
Describe 'AstrXbian'
Describe 'install()'
Include ./include.sh
It 'should be me'
When call i_am
The output should eq 'v0.4'
End
It 'should not be superuser'
When call i_am_root
The status should not be success
End
It 'should install AstrXbian'
When call i_should_install
The status should be success
End
End
End