diff options
Diffstat (limited to 'test/plugins')
-rw-r--r-- | test/plugins/blocks/index.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/plugins/blocks/index.js b/test/plugins/blocks/index.js index 91e8b55..0f5fb87 100644 --- a/test/plugins/blocks/index.js +++ b/test/plugins/blocks/index.js @@ -10,6 +10,14 @@ module.exports = { process: function(args) { return "test2"+args.body+"test2"; } - } + }, + "test3join": { + blocks: [ + "also" + ], + process: function(args) { + return "test"; + } + } } };
\ No newline at end of file |