File: asp-net-ext.t

package info (click to toggle)
ack 2.24-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,704 kB
  • sloc: perl: 8,590; ansic: 21; fortran: 11; makefile: 5; sh: 5
file content (23 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!perl -T

use strict;
use warnings;
use lib 't';

use Test::More tests => 2;
use Util;

prep_environment();

my @expected = qw(
    t/swamp/MasterPage.master
    t/swamp/Sample.ascx
    t/swamp/Sample.asmx
    t/swamp/sample.aspx
    t/swamp/service.svc
);

my @args    = qw( --aspx -f );
my @results = run_ack(@args);

sets_match( \@results, \@expected, __FILE__ );