mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 09:07:21 +01:00
fix(tests): move runes test to text package
This commit is contained in:
parent
1177493895
commit
45d7da4df6
@ -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
|
||||
|
@ -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)
|
||||
})
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user