-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ApiUtil - a place for adding utility methods for work with API
- Loading branch information
Hovhannes Babayan
committed
Dec 24, 2014
1 parent
20cc2de
commit 3353e39
Showing
4 changed files
with
18 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
var ApiFactory = require('./src/ApiFactory'); | ||
var Api = require('./src/Api'); | ||
var ApiUtil = require('./src/ApiUtil'); | ||
|
||
module.exports = { | ||
Api: Api, | ||
ApiFactory: ApiFactory | ||
ApiFactory: ApiFactory, | ||
ApiUtil: ApiUtil | ||
}; |
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,5 @@ | ||
var ApiUtil = { | ||
|
||
}; | ||
|
||
module.exports = ApiUtil; |
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,8 @@ | ||
var expect = require('chai').expect; | ||
|
||
var ApiUtil = require('./../src/ApiUtil'); | ||
|
||
|
||
describe('ApiUtil', function() { | ||
|
||
}); |