Ver código fonte

fix(tests): move runes test to text package

jguer 4 anos atrás
pai
commit
45d7da4df6
3 arquivos alterados com 6 adições e 8 exclusões
  1. 2 0
      install.go
  2. 4 5
      utils_test.go
  3. 0 3
      utils.go

+ 2 - 0
install.go

@@ -25,6 +25,8 @@ import (
 	"github.com/Jguer/yay/v10/pkg/text"
 )
 
+const gitEmptyTree = "4b825dc642cb6eb9a060e54bf8d69288fbee4904"
+
 func asdeps(cmdArgs *settings.Arguments, pkgs []string) error {
 	if len(pkgs) == 0 {
 		return nil

+ 4 - 5
utils_test.go

@@ -1,9 +1,9 @@
-package main
+package text
 
 import (
 	"testing"
 
-	"github.com/Jguer/yay/v10/pkg/text"
+	"github.com/stretchr/testify/assert"
 )
 
 func TestLessRunes(t *testing.T) {
@@ -29,9 +29,8 @@ func TestLessRunes(t *testing.T) {
 	}
 	for _, tt := range tests {
 		t.Run(tt.name, func(t *testing.T) {
-			if got := text.LessRunes(tt.args.iRunes, tt.args.jRunes); got != tt.want {
-				t.Errorf("LessRunes() = %v, want %v", got, tt.want)
-			}
+			got := LessRunes(tt.args.iRunes, tt.args.jRunes)
+			assert.Equal(t, tt.want, got)
 		})
 	}
 }

+ 0 - 3
utils.go

@@ -1,3 +0,0 @@
-package main
-
-const gitEmptyTree = "4b825dc642cb6eb9a060e54bf8d69288fbee4904"