[svn:parrot] r40892 - branches/context_pmc3/t/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Mon Aug 31 11:18:16 UTC 2009
Author: bacek
Date: Mon Aug 31 11:18:15 2009
New Revision: 40892
URL: https://trac.parrot.org/parrot/changeset/40892
Log:
[t] Add stub test for Context PMC.
Added:
branches/context_pmc3/t/pmc/context.t
Added: branches/context_pmc3/t/pmc/context.t
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/context_pmc3/t/pmc/context.t Mon Aug 31 11:18:15 2009 (r40892)
@@ -0,0 +1,34 @@
+#! parrot
+# Copyright (C) 2009, Parrot Foundation.
+# $Id$
+
+=head1 NAME
+
+t/pmc/context.t - test Context PMC
+
+=head1 SYNOPSIS
+
+ % prove t/pmc/context.t
+
+=head1 DESCRIPTION
+
+Tests the Context PMC.
+
+TODO: Implement real tests when Context PMC will be migrated to use ATTRibutes.
+
+=cut
+
+.sub main :main
+ .include 'test_more.pir'
+
+ plan(1)
+
+ $P0 = new ['Context']
+ ok(1, 'Instantiated .Context')
+.end
+
+# Local Variables:
+# mode: pir
+# fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4 ft=pir:
More information about the parrot-commits
mailing list