rows_test.go 465 B

12345678910111213141516171819202122232425
  1. package common_test
  2. import (
  3. . "github.com/onsi/ginkgo"
  4. . "github.com/onsi/gomega"
  5. "github.com/vladimirok5959/golang-sql/gosql/common"
  6. )
  7. var _ = Describe("common", func() {
  8. Context("scans", func() {
  9. It("convert struct to array of pointers to this struct fields", func() {
  10. var row struct {
  11. ID int64
  12. Name string
  13. Value string
  14. }
  15. Expect(common.Scans(&row)).To(Equal([]any{
  16. &row.ID,
  17. &row.Name,
  18. &row.Value,
  19. }))
  20. })
  21. })
  22. })