[svn:parrot] r42052 - trunk/t/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Fri Oct 23 22:06:12 UTC 2009


Author: bacek
Date: Fri Oct 23 22:06:12 2009
New Revision: 42052
URL: https://trac.parrot.org/parrot/changeset/42052

Log:
[t] Add stub test for CallSignatureReturns.

Added:
   trunk/t/pmc/callsignaturereturns.t

Added: trunk/t/pmc/callsignaturereturns.t
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/t/pmc/callsignaturereturns.t	Fri Oct 23 22:06:12 2009	(r42052)
@@ -0,0 +1,37 @@
+#! parrot
+# Copyright (C) 2009, Parrot Foundation.
+# $Id$
+
+=head1 NAME
+
+t/pmc/callsignaturereturns.t - test CallSignatureReturns PMC
+
+=head1 SYNOPSIS
+
+    % prove t/pmc/callsignaturereturns.t
+
+=head1 DESCRIPTION
+
+Tests the CallSignatureReturns PMC.
+
+=cut
+
+.sub main :main
+    .include 'test_more.pir'
+
+    plan(1)
+
+    instantiate()
+.end
+
+
+.sub instantiate
+    $P0 = new ['CallSignatureReturns']
+    ok(1, 'Instantiated CallSignatureReturns')
+.end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4 ft=pir:


More information about the parrot-commits mailing list