forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGistApiTest.js
51 lines (45 loc) · 1.53 KB
/
GistApiTest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Copyright 2010 Ajax.org B.V.
*
* This product includes software developed by
* Ajax.org B.V. (http://www.ajax.org/).
*
* Author: James Burkhart <[email protected]>
*/
"use strict";
var assert = require('assert');
var GitHubApi = require('../github').GitHubApi;
var test = module.exports = {
setUp: function() {
this.github = new GitHubApi(true);
this.gistApi = this.github.getGistApi();
},
"test: get user gists" : function(finished) {
this.gistApi.getUserGists('fourktest', function(err, gists) {
assert.equal(err, null);
assert.ok(gists.length);
assert.equal(gists[0].owner, 'fourktest');
assert.equal(gists[0].comments[0].user, 'fourktest');
finished();
});
},
"test: get metadata" : function(finished) {
this.gistApi.getMetadata('1091209', function(err, gists) {
assert.equal(err, null);
assert.ok(gists.length);
assert.equal(gists[0].owner, 'fourktest');
assert.equal(gists[0].comments[0].user, 'fourktest');
assert.equal(gists[0].repo, '1091209');
finished();
});
},
"test: get content" : function(finished) {
this.gistApi.getContent('374130', 'ports.sh', function(err, gist) {
assert.equal(err, null);
assert.ok(gist.length);
assert.equal(gist.length, 68);
finished();
});
}
};
!module.parent && require("asyncjs").test.testcase(module.exports).exec();