-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provider/aws: Add tests for Lambda function updates
- Loading branch information
Radek Simko
committed
Feb 21, 2016
1 parent
e5c94e1
commit 3de5b52
Showing
4 changed files
with
179 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
var http = require('http') | ||
|
||
exports.handler = function(event, context) { | ||
http.get("http://requestb.in/10m32wg1", function(res) { | ||
console.log("success", res.statusCode, res.body) | ||
}).on('error', function(e) { | ||
console.log("error", e) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
var http = require('http') | ||
|
||
exports.handler = function(event, context) { | ||
http.get("http://requestb.in/MODIFIED", function(res) { | ||
console.log("success", res.statusCode, res.body) | ||
}).on('error', function(e) { | ||
console.log("error", e) | ||
}) | ||
} |