Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug1412 / bug1412.yang
1 module bug1412 {
2     yang-version 1;
3     namespace 'urn:test:bug1412';
4     prefix "b1412";
5
6     import extensions {
7         prefix ext;
8         revision-date "2014-07-25";
9     }
10
11     revision "2014-07-25" {
12     }
13
14
15     container node {
16         ext:action hello {
17             ext:info "greeting";
18             description "say greeting";
19             ext:actionpoint entry {
20                 ext:internal;
21             }
22             output {
23                 uses params;
24             }
25         }
26     }
27
28 }