add and test support for return comment
This commit is contained in:
@@ -84,6 +84,9 @@ describe('#SolidityDocGenerator', () => {
|
||||
it('return type name', () => {
|
||||
expect(methodDoc.returnType.name).to.equal('r');
|
||||
});
|
||||
it('return comment', () => {
|
||||
expect(methodDoc.returnComment).to.equal('publicMethod @return');
|
||||
});
|
||||
});
|
||||
describe('should emit external method documentation for', () => {
|
||||
let methodDoc: SolidityMethod;
|
||||
@@ -111,6 +114,9 @@ describe('#SolidityDocGenerator', () => {
|
||||
it('return type name', () => {
|
||||
expect(methodDoc.returnType.name).to.equal('r');
|
||||
});
|
||||
it('return comment', () => {
|
||||
expect(methodDoc.returnComment).to.equal('externalMethod @return');
|
||||
});
|
||||
});
|
||||
it('should not truncate a multi-line devdoc comment', () => {
|
||||
// tslint:disable-next-line:no-unnecessary-type-assertion
|
||||
|
Reference in New Issue
Block a user