changeset 23864:e660b93d51dc

* classdef.tst: New test (bug #51715).
author John W. Eaton <jwe@octave.org>
date Thu, 10 Aug 2017 12:03:53 -0400
parents 56b7352fa456
children d56c18dc1373
files test/classdef/classdef.tst
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/test/classdef/classdef.tst	Thu Aug 10 11:54:40 2017 -0400
+++ b/test/classdef/classdef.tst	Thu Aug 10 12:03:53 2017 -0400
@@ -75,3 +75,10 @@
 %!error <parse error> plist_t1
 %!assert (class (plist_t2), "plist_t2")
 %!assert (class (plist_t3), "plist_t3")
+
+## Do not change this to "containers.Map()".  This test is intended to
+## ensure that calling a function in a +package directory will work
+## properly.
+%!test <*51715>
+%! x = containers.Map;
+%! assert (isobject (x));