Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
Remco cb6e5cb0c7 Major rewrite il y a 7 ans
..
.gitignore Major rewrite il y a 7 ans
Makefile Major rewrite il y a 7 ans
README.md Major rewrite il y a 7 ans
attribute.go Major rewrite il y a 7 ans
const.go Major rewrite il y a 7 ans
dynamodb.go Major rewrite il y a 7 ans
dynamodb_test.go Major rewrite il y a 7 ans
item.go Major rewrite il y a 7 ans
item_test.go Major rewrite il y a 7 ans
marshaller.go Major rewrite il y a 7 ans
marshaller_test.go Major rewrite il y a 7 ans
query.go Major rewrite il y a 7 ans
query_builder.go Major rewrite il y a 7 ans
query_builder_test.go Major rewrite il y a 7 ans
scan.go Major rewrite il y a 7 ans
stream.go Major rewrite il y a 7 ans
stream_test.go Major rewrite il y a 7 ans
table.go Major rewrite il y a 7 ans
table_test.go Major rewrite il y a 7 ans
update_item.go Major rewrite il y a 7 ans

README.md

Running integration tests

against DynamoDB local

To download and launch DynamoDB local:

$ make

To test:

$ go test -v -amazon

against real DynamoDB server on us-east

WARNING: Some dangerous operations such as DeleteTable will be performed during the tests. Please be careful.

To test:

$ go test -v -amazon -local=false

Note: Running tests against real DynamoDB will take several minutes.