From 8a1ae4be139d4fff3369c0412a1536eb540887d8 Mon Sep 17 00:00:00 2001 From: Renee Date: Mon, 2 Mar 2015 12:36:50 +0100 Subject: [PATCH] Mojolicious 6.0 was released some days ago.... Now this plugin fails to install due to the check for Mojolicious 5.x. I don't know what this test is for, because there is no bailout or a skip when the Mojolicious version doesn't match... --- t/i18n_url_for.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/i18n_url_for.t b/t/i18n_url_for.t index 406890d..12c7352 100755 --- a/t/i18n_url_for.t +++ b/t/i18n_url_for.t @@ -48,7 +48,7 @@ post '/login' => sub { # -like $Mojolicious::VERSION, qr/^5\.\d+$/, 'Check Mojolicious 5.0'; +cmp_ok $Mojolicious::VERSION, '>=', 5.0, 'Check Mojolicious >= 5.0'; #