SearchCircles (GET /circles) was recently merged into master without full test coverage implemented. The merge was done to provide the mobile and web teams with a correctly functioning endpoint to get rid of roadblocks. The endpoint has been tested by hand, which is not sustainable. The following tests have been stubbed out and should be completed.
func (s *TestSuite) TestSearchCirclesOfTargetOK(c *C) {
// stub
}
func (s *TestSuite) TestSearchCirclesNoSpecificUserOK(c *C) {
// stub
}
func (s *TestSuite) TestSearchCirclesBeforeWorks(c *C) {
// stub
}
SearchCircles (
GET /circles
) was recently merged into master without full test coverage implemented. The merge was done to provide the mobile and web teams with a correctly functioning endpoint to get rid of roadblocks. The endpoint has been tested by hand, which is not sustainable. The following tests have been stubbed out and should be completed.The first two are of higher priority than Before.