2
use Test::Roo import => [qw/like done_testing/];
6
default => sub { "hello world" },
11
like( $self->fixture, qr/hello world/, "saw fixture" );
12
eval { fail("fail() called") };
13
like( $@, qr/undefined subroutine/i, "Not all Test::More functions imported" );
19
# This file is part of Test-Roo
21
# This software is Copyright (c) 2013 by David Golden.
23
# This is free software, licensed under:
25
# The Apache License, Version 2.0, January 2004
27
# vim: ts=4 sts=4 sw=4 et: