Skip to content

Commit 3d38758

Browse files
committed
Add combined_json_with_devdoc to command line tests
1 parent 399217f commit 3d38758

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--combined-json devdoc --pretty-json --allow-paths .
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// SPDX-License-Identifier: GPL-3.0
2+
pragma solidity >=0.0;
3+
4+
/// @dev This is devdoc.
5+
contract C {}
6+
7+
/// And this is a notice.
8+
contract D {}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"contracts":
3+
{
4+
"combined_json_with_devdoc/input.sol:C":
5+
{
6+
"devdoc":
7+
{
8+
"details": "This is devdoc.",
9+
"kind": "dev",
10+
"methods": {},
11+
"version": 1
12+
}
13+
},
14+
"combined_json_with_devdoc/input.sol:D":
15+
{
16+
"devdoc":
17+
{
18+
"kind": "dev",
19+
"methods": {},
20+
"version": 1
21+
}
22+
}
23+
},
24+
"version": "<VERSION REMOVED>"
25+
}

0 commit comments

Comments
 (0)