[#6] Fix test struct tag naming
Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
This commit is contained in:
parent
e30bbe87e9
commit
b08b08d6a0
4 changed files with 72 additions and 49 deletions
17
internal/s3/structure_test.go
Normal file
17
internal/s3/structure_test.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package s3
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestStructParsing(t *testing.T) {
|
||||
structure, err := ParseTestsStruct()
|
||||
require.NoError(t, err)
|
||||
|
||||
for _, group := range structure.Groups {
|
||||
require.NotEmptyf(t, group.Tag, "group tag must not be empty: %v", group)
|
||||
require.NotEmptyf(t, group.Name, "group name must not be empty: %v", group)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue