summaryrefslogtreecommitdiff
path: root/testx/create_test.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-29 22:34:47 +0200
committerewy <ewy0@protonmail.com>2026-04-29 22:34:47 +0200
commit42fb6efd01e3640ea9d15dc1e0a072c1ea8295b1 (patch)
treeebf351b66f0288c8e9f879c529a962b025bebf15 /testx/create_test.go
parent03a31799a872385d821130f46942fc13dae76774 (diff)
fix very embarrassing bug where -a didnt actually work
Diffstat (limited to 'testx/create_test.go')
-rw-r--r--testx/create_test.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/testx/create_test.go b/testx/create_test.go
deleted file mode 100644
index d0e3099..0000000
--- a/testx/create_test.go
+++ /dev/null
@@ -1,34 +0,0 @@
-//go:build test
-
-package testx
-
-import (
- "github.com/stretchr/testify/assert"
- "testing"
-)
-
-func TestAssertSourceIs_Correct(t *testing.T) {
- src := TSource("abc", "def")
- AssertSourceIs(t, "abc", src)
-}
-
-func TestAssertSourceIs_Wrong(t *testing.T) {
- src := TSource("abc", "def")
- AssertSourceIsNot(t, ";lkjh", src)
-}
-
-func TestAssertTargetIs_Correct(t *testing.T) {
- ta := TTarget("aaaa")
- AssertTargetIs(t, "aaaa", ta)
-}
-
-func TestAssertTargetIs_Wrong(t *testing.T) {
- ta := TTarget("aaaa")
- AssertTargetIsNot(t, "bbbbbb", ta)
-}
-
-func TestTTargetIdentity(t *testing.T) {
- ta := TTarget("asdf.hidden.sh")
- assert.True(t, ta.Matches("asdf"))
- assert.False(t, ta.Matches("hidden"))
-}