1#!/usr/bin/perl
2use strict;
3use warnings;
4use Test::More tests => 4;
5BEGIN { use_ok('typemap_namespace') }
6require_ok('typemap_namespace');
7
8is(typemap_namespace::test1("hello"), "hello", "test 1");
9is(typemap_namespace::test2("hello"), "hello", "test 1");
10