UNPKG
tooljs-github
Version:
latest (0.0.1)
0.0.1
Tooling to create GitHub repo.
github.com/tooljs/github
tooljs/github
tooljs-github
/
test
/
index.js
15 lines
(12 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
assert =
require
(
'assert'
);
var
Repo
=
require
(
'..'
);
describe
(
'tooljs-github'
,
function
(
){
it
(
'should init'
,
function
(
done
){
var
repo =
new
Repo
({
org
:
'tooljs'
,
repo
:
'example'
});
//repo.exec(done);
done
(); }); });