mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 03:28:28 -04:00
0cdb065739
binary to mount at runtime, -c or DMS_SHELL_DIR overrides required to explicitly override embedded configuration
10 lines
176 B
Go
10 lines
176 B
Go
package shellembed
|
|
|
|
import "testing"
|
|
|
|
func TestAvailableFalseWithoutTag(t *testing.T) {
|
|
if Available() {
|
|
t.Fatal("Available() should be false in untagged test builds")
|
|
}
|
|
}
|