X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/5568c760e5a2062815fc4b71735bc33383db88da..dea6ee94a659dbe4794fa450037664781009d4eb:/test/test.sod diff --git a/test/test.sod b/test/test.sod index 47e8545..ee74da3 100644 --- a/test/test.sod +++ b/test/test.sod @@ -256,11 +256,20 @@ code c: tests { [link = SodObject, nick = t2] class T2: SodObject { [initarg = x] int x = 0; + [initarg = z] t2.x; initarg int y = 1; init { if (!y) STEP(0); } } +[link = T2] +class T2Sub: T2 { + [initarg = a] t2.x; + [initarg = b] t2.x; + [initarg = x] t2.x; + [initarg = c] t2.x; +} + code c: tests { prepare("initargs, defaults"); { SOD_DECL(T2, t, NO_KWARGS); @@ -272,6 +281,21 @@ code c: tests { if (t->t2.x == 42) STEP(1); DONE(2); } + prepare("initargs, inheritance"); + { SOD_DECL(T2Sub, t, KWARGS(K(c, 1) K(z, 2))); + if (t->t2.x == 1) STEP(0); + DONE(1); + } + prepare("initargs, ordering"); + { SOD_DECL(T2Sub, t, KWARGS(K(a, 1) K(b, 2))); + if (t->t2.x == 1) STEP(0); + DONE(1); + } + prepare("initargs, reprioritizing"); + { SOD_DECL(T2Sub, t, KWARGS(K(x, 1) K(c, 2))); + if (t->t2.x == 1) STEP(0); + DONE(1); + } } /*----- Keyword argument propagation --------------------------------------*/