provider/perl: test older versions

This commit is contained in:
Jan Edmund Lazo 2020-01-19 22:50:11 -05:00
parent 670a14a2a6
commit 7853b61786
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
1 changed files with 6 additions and 2 deletions

View File

@ -30,7 +30,8 @@ describe('perl host', function()
local fname = 'Xtest-perl-hello.pl'
write_file(fname, [[
package main;
use v5.22.1;
use strict;
use warnings;
use Neovim::Ext;
use Neovim::Ext::MsgPack::RPC;
@ -47,6 +48,8 @@ describe('perl host', function()
local fname = 'Xtest-perl-hello-plugin.pl'
write_file(fname, [[
package TestPlugin;
use strict;
use warnings;
use parent qw(Neovim::Ext::Plugin);
__PACKAGE__->register;
@ -60,7 +63,8 @@ describe('perl host', function()
}
package main;
use v5.22.1;
use strict;
use warnings;
use Neovim::Ext;
use Neovim::Ext::MsgPack::RPC;