github.com/blend/go-sdk@v1.20220411.3/validate/all_test.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package validate 9 10 import ( 11 "fmt" 12 "testing" 13 14 "github.com/blend/go-sdk/assert" 15 ) 16 17 func TestAll(t *testing.T) { 18 assert := assert.New(t) 19 20 res := All(none, some(fmt.Errorf("one")), some(fmt.Errorf("two")), none)() 21 assert.Len(res, 2) 22 } 23 24 func TestAllNested(t *testing.T) { 25 assert := assert.New(t) 26 27 res := All( 28 none, 29 some(fmt.Errorf("one")), 30 All( 31 some(fmt.Errorf("two")), 32 some(fmt.Errorf("three")), 33 ), 34 none, 35 )() 36 assert.Len(res, 3) 37 }