aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/tests/test-s3.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/request/tests/test-s3.js')
-rw-r--r--deps/npm/node_modules/request/tests/test-s3.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/deps/npm/node_modules/request/tests/test-s3.js b/deps/npm/node_modules/request/tests/test-s3.js
new file mode 100644
index 0000000000..0f6a832b6d
--- /dev/null
+++ b/deps/npm/node_modules/request/tests/test-s3.js
@@ -0,0 +1,13 @@
+var request = require('../index')
+
+var r = request.get('https://log.curlybracecast.com.s3.amazonaws.com/',
+ { aws:
+ { key: 'AKIAI6KIQRRVMGK3WK5Q'
+ , secret: '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'
+ , bucket: 'log.curlybracecast.com'
+ }
+ }, function (e, resp, body) {
+ console.log(r.headers)
+ console.log(body)
+ }
+) \ No newline at end of file