1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-25 23:02:22 +02:00

сделал Find_LastTagVersion()

This commit is contained in:
Nikitin Aleksandr
2024-10-11 14:48:02 +03:00
parent 8c78a23405
commit def91f7149
4 changed files with 231 additions and 0 deletions

15
git/git_test.go Normal file
View File

@@ -0,0 +1,15 @@
package git
import "testing"
func TestFind_LastTagVersion(t *testing.T) {
Otvet, err := Find_LastTagVersion()
if err != nil {
t.Error(err)
}
if Otvet == "" {
t.Error("TestFind_LastTagVersion() error: Otvet =''")
}
}