Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lib/MetaCPAN/Web/Controller/Feed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ use namespace::autoclean;

BEGIN { extends 'MetaCPAN::Web::Controller' }

use DateTime ();
use HTML::Escape qw( escape_html );
use MetaCPAN::Web::RenderUtil qw( render_markdown );
use DateTime ();
use HTML::Escape qw( escape_html );
use MetaCPAN::Web::Types qw( ArrayRef DateTime Enum HashRef Str Undef Uri );
use Params::ValidationCompiler qw( validation_for );
use XML::FeedPP (); ## no perlimports
Expand Down
9 changes: 1 addition & 8 deletions t/controller/feed.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@ use lib 't/lib';

use MetaCPAN::Web ();
use MetaCPAN::Web::Controller::Feed ();
use MetaCPAN::Web::Test qw(
app
GET
override_api_response
test_cache_headers
test_psgi
tx
);
use MetaCPAN::Web::Test qw( app GET test_cache_headers test_psgi tx );
use Test::More;
use Test::Warnings ();
use Try::Tiny qw( catch try );
Expand Down
Loading