preparing changelog for release
[catagits/CatalystX-Declare.git] / t / 510_render_view.t
CommitLineData
2bb54af3 1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8use Test::More;
9
10eval { require Catalyst::Action::RenderView };
11plan skip_all => 'Catalyst::Action::RenderView required'
12 if $@;
13
14use Catalyst::Test 'RenderViewTestApp';
15
16is get('/foo'), 'RenderViewTestApp::View::Test', 'view was reached via RenderView';
17
18done_testing;