From 8f73a4f2f16577a687300b09a0bf8999bf9217b1 Mon Sep 17 00:00:00 2001 From: Michael Mathews Date: Sun, 16 Jan 2011 11:25:50 +0000 Subject: [PATCH] Added test cases for the @param tag. --- modules/jsdoc/tag/dictionary/definitions.js | 3 ++- test/runner.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/jsdoc/tag/dictionary/definitions.js b/modules/jsdoc/tag/dictionary/definitions.js index 56bf71ee..daa4ed45 100644 --- a/modules/jsdoc/tag/dictionary/definitions.js +++ b/modules/jsdoc/tag/dictionary/definitions.js @@ -275,7 +275,8 @@ return false; } }) - .synonym('argument'); + .synonym('argument') + .synonym('arg'); dictionary.defineTag('private', { mustNotHaveValue: true, diff --git a/test/runner.js b/test/runner.js index e3e82595..3e217e0a 100644 --- a/test/runner.js +++ b/test/runner.js @@ -97,6 +97,7 @@ testFile('test/t/cases/exceptiontag.js'); testFile('test/t/cases/globaltag.js'); testFile('test/t/cases/ignoretag.js'); testFile('test/t/cases/paramtag.js'); +testFile('test/t/cases/returnstag.js'); testFile('test/t/cases/sincetag.js'); testFile('test/t/cases/typetag.js'); testFile('test/t/cases/versiontag.js');