#!perl
# Copyright (C) 2005-2007, The Perl Foundation.
# $Id: namespace.t 18563 2007-05-16 00:53:55Z chromatic $

use strict;
use warnings;
use lib qw( . lib ../lib ../../lib );

use Test::More;
use Parrot::Test tests => 1;
use Parrot::Config;

=head1 NAME

t/examples/namespace.t - Test examples in F<examples/namespace>

=head1 SYNOPSIS

    % prove t/examples/namespace.t

=head1 DESCRIPTION

Test the examples in F<examples/namespace>.

=head1 SEE ALSO

F<t/examples/pir.t>

=head1 AUTHOR

Bernhard Schmalhofer - <Bernhard.Schmalhofer@gmx.de>

=cut

# Set up expected output for examples

# cannot test the exact result, just adding one method somewhere
# changes all. Also namespaces are hashes. While we preserve
# insert order, we do not gurantee any specific order.
# test the name of the 2 toplevel names,  parrot is using
my %expected = (
    'namespace_dump.pir' => << 'END_EXPECTED',
/^parrot.*
^__parrot_core/sm
END_EXPECTED
);

while ( my ( $example, $expected ) = each %expected ) {
    example_output_like( "examples/namespace/$example", $expected );
}

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4:


syntax highlighted by Code2HTML, v. 0.9.1