Speed up slow tell-based Distributed*IntegrationTest cases
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / cars.yang
1 module cars {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:cars";
4     prefix "cars";
5
6     revision "2014-03-13" {
7         description "Initial revision.";
8     }
9
10     container cars {
11         presence "expected to exist when empty";
12         list car {
13             key name;
14             leaf name {
15                 type string;
16             }
17
18             leaf price {
19                 type uint64;
20             }
21         }
22     }
23 }