Use YangSnippetCleaner in implemetation + test with yangs
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / base / with_import / test-typedef-with-import.yang
1 module test {
2
3     yang-version 1;
4     namespace "urn:test:simple:test";
5     prefix "test";
6
7     import test-import { prefix "imported-test"; revision-date 2017-04-21; }
8
9     revision 2017-02-06;
10
11     typedef my-type {
12         type int8;
13     }
14
15     container *my-cont {
16     }
17 }