add api write test

This commit is contained in:
AJ ONeal 2015-01-09 04:54:10 +00:00
parent c995197c0b
commit 53537ebfe3
1 changed files with 14 additions and 0 deletions

14
tests/write.sh Normal file
View File

@ -0,0 +1,14 @@
curl 'http://local.dear.desi:8080/api/fs/files?compiled=true&_method=PUT' \
-X POST \
-H 'Content-Type: application/json' \
-d '{
"files": [
{ "path": "posts/foo.md"
, "name": "foo.md"
, "relativePath": "posts"
, "lastModifiedDate": "2013-08-01T22:47:37.000Z"
, "contents": "..."
, "sha1": "6eae3a5b062c6d0d79f070c26e6d62486b40cb46"
}
]
}'