File: todo.t

package info (click to toggle)
libperl-prereqscanner-notquitelite-perl 0.9917-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: perl: 5,239; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../../";
use Test::More;
use t::Util;

plan skip_all => 'TODO';

test('too early extends', <<'END', {Moose => 0, 'UNIVERSAL::require' => 0, 'Test::Run::CmdLine' => 0, 'Test::Run::Base' => 0}); # SHLOMIF/Test-Run-CmdLine-0.0131/lib/Test/Run/CmdLine/Iface.pm
extends ('Test::Run::Base');

use UNIVERSAL::require;

use Test::Run::CmdLine;

use Moose;
END

done_testing;