File: client_user_test.go

package info (click to toggle)
golang-github-koofr-go-koofrclient 0.0~git20190724.8e5366d-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: makefile: 5
file content (14 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package koofrclient_test

import (
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
)

var _ = Describe("ClientUser", func() {
	It("should get user info", func() {
		info, err := client.UserInfo()
		Expect(err).NotTo(HaveOccurred())
		Expect(info.Email).To(Equal(email))
	})
})