#
testify
Here are 26 public repositories matching this topic...
A full-featured set type for string elements in Go
-
Updated
Oct 16, 2018 - Go
-
Updated
May 13, 2019 - Go
saden1
commented
Dec 4, 2018
Currently we HTTP communication is used. This is not ideal and requires extensive configuration. Try using unix socket for communicating with docker.
// Create a client based on DOCKER_HOST and DOCKER_CERT_PATH env vars
final DockerClient docker = DefaultDockerClient.builder().uri("unix:///var/run/docker.sock")
.build();
// Pull an image
docker.pull("busybox", neREST API for interaction with the mongodb
go
golang
mongodb
backend
rest-api
openapi
glide
swagger-ui
testify
go-restful
mockgen
mongodb-go-driver
-
Updated
Feb 27, 2019 - Go
boilerplate rest api using https://github.com/gin-gonic
-
Updated
May 24, 2019 - Go
Testify Project Blog
-
Updated
Aug 19, 2017 - HTML
Testify Project Website
javascript
testing
docker
spring
tdd
mockito
junit
jersey
springboot
guice
spring-mvc
hk2
testify
easymock
testing-framework
grpc-java
-
Updated
Aug 21, 2018 - CSS
-
Updated
Jul 24, 2018 - Go
An example for few of the popular crypto algorithm in golang and some reference in code. Embedding in golang for code sharing and performing a test over it
-
Updated
Jul 2, 2018 - Go
Improve this page
Add a description, image, and links to the testify topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the testify topic, visit your repo's landing page and select "manage topics."
Hi,
It seems like the HTTP Assert package does not allow me to specify a body to pass in a POST request for example. Looking at the
HTTPBody()function, the body argument is set tonil:req, err := http.NewRequest(method, url+"?"+values.Encode(), nil)Is this by design, or am I looking at a missing feature?
Cheers,