Skip to content

Commit 6e740f7

Browse files
author
Hovhannes Babayan
committed
just making tests pass
1 parent f094138 commit 6e740f7

11 files changed

Lines changed: 101 additions & 2 deletions

File tree

dist/attask.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Api.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,16 @@ var plugins = [
3636
'logout',
3737
'search',
3838
'get',
39-
'post'
39+
'post',
40+
'put',
41+
'delete',
42+
'report',
43+
'count',
44+
'copy',
45+
'upload',
46+
'execute',
47+
'namedQuery',
48+
'metadata'
4049
];
4150
for(var i=0; i<plugins.length; ++i) {
4251
require('./plugins/' + plugins[i])(Api);

src/plugins/copy.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.copy = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/count.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.count = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/delete.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.delete = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/execute.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.execute = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/metadata.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.metadata = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/namedQuery.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.namedQuery = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/put.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.put = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

src/plugins/report.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var Api = require('./../Api');
2+
3+
module.exports = function(Api) {
4+
/**
5+
*
6+
*/
7+
Api.prototype.report = function () {
8+
throw new Error('Not implemented')
9+
};
10+
};

0 commit comments

Comments
 (0)