Skip to content

Commit

Permalink
added missing test files
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj4668 committed Nov 2, 2023
1 parent 3333b21 commit 520b4ee
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test_issues/test_i193/y1-base.yang
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module y1-base {
namespace "http://example.com/y1-base";
prefix y-b;
include y1-base2;
include y1-profiles;
}
9 changes: 9 additions & 0 deletions test/test_issues/test_i193/y1-base2.yang
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
submodule y1-base2 {
belongs-to y1-base {
prefix y-b;
}
container configs {
container profiles {
}
}
}
15 changes: 15 additions & 0 deletions test/test_issues/test_i193/y1-profiles.yang
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
submodule y1-profiles {
belongs-to y1-base {
prefix y-b;
}

container y {
must "/y-b:configs/y-b:profiles";
list profile {
key name;
leaf name {
type string;
}
}
}
}

0 comments on commit 520b4ee

Please sign in to comment.