Mercurial > hg > octave-nkf
diff scripts/plot/line.m @ 13111:ebb42fb2da04
Various fixes for tests in scripts/plot
plot/cla.m: Use figure number 1232.
plot/clf.m: Split test into two.
plot/findall.m: Check only for graphic objects in figure 1232.
plot/findall.m: Ditto.
plot/gcf.m: Simplify test.
plot/line.m: Check against default values now.
plot/whitebg.m: Restore default values after tests.
author | Kai Habel <kai.habel@gmx.de> |
---|---|
date | Wed, 07 Sep 2011 20:13:18 +0200 |
parents | 5553412c6614 |
children | cd808de114c1 |
line wrap: on
line diff
--- a/scripts/plot/line.m +++ b/scripts/plot/line.m @@ -50,9 +50,9 @@ %! assert (get (h, "xdata"), [0 1], eps); %! assert (get (h, "ydata"), [0 1], eps); %! assert (get (h, "type"), "line"); -%! assert (get (h, "color"), [0 0 0]); -%! assert (get (h, "linestyle"), "-"); -%! assert (get (h, "linewidth"), 0.5, eps); +%! assert (get (h, "color"), get(0,'defaultlinecolor')); +%! assert (get (h, "linestyle"), get(0,'defaultlinelinestyle')); +%! assert (get (h, "linewidth"), get(0,'defaultlinelinewidth'), eps); %! unwind_protect_cleanup %! close (hf); %! end_unwind_protect