This commit is contained in:
2026-06-19 07:25:46 +03:00
parent 06823ee547
commit 2d73ce1727
52 changed files with 5173 additions and 547 deletions

39
mqe/index_test.go Normal file
View File

@@ -0,0 +1,39 @@
package mqe
import (
"testing"
"gordenko.dev/dima/pretty"
)
func TestDayIndex(t *testing.T) {
index := IndexYmds([]int{
20221201,
20221202,
20230110,
20230210,
20230330,
20230331,
20240101,
20240102,
20240103,
})
pretty.Println(index)
}
func TestMonthIndex(t *testing.T) {
index := IndexYms([]int{
202211,
202212,
202301,
202302,
202303,
202304,
202404,
202405,
202406,
})
pretty.Println(index)
}