A lot of work with albums and photos, still working but want to save working tests/methods

Signed-off-by: Kris Nóva <kris@nivenly.com>
This commit is contained in:
Kris Nóva 2021-02-11 17:16:37 -08:00
parent 6436478402
commit 194f0acb28
79 changed files with 1028 additions and 23 deletions

10
test/index_test.go Normal file
View file

@ -0,0 +1,10 @@
package test
import "testing"
func TestHappyIndex(t *testing.T) {
err := Client.V1().Index()
if err != nil {
t.Errorf("failed indexing: %v", err)
}
}