mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
example: `curl http://localhost:8080/api/repos/test/packages\?maximumVersion\=1` Change-Id: Ie9ffd36146bf017bbb353737f32360f7b73d6b0a
19 lines
382 B
Go
19 lines
382 B
Go
package api
|
|
|
|
import (
|
|
. "gopkg.in/check.v1"
|
|
)
|
|
|
|
type PackagesSuite struct {
|
|
ApiSuite
|
|
}
|
|
|
|
var _ = Suite(&PackagesSuite{})
|
|
|
|
func (s *PackagesSuite) TestPackagesGetMaximumVersion(c *C) {
|
|
response, err := s.HTTPRequest("GET", "/api/repos/dummy/packages?maximumVersion=1", nil)
|
|
c.Assert(err, IsNil)
|
|
c.Check(response.Code, Equals, 200)
|
|
c.Check(response.Body.String(), Equals, "[]")
|
|
}
|