aboutsummaryrefslogtreecommitdiffstats
path: root/t/100-python.t
blob: 677924b5e5f80b7a3f123e8fbe0f29a83fc65b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

chdir 't/git-repo/' or die $!;

system('cp ../*.py .');
ok !$?;

my $output = `ls -1 | grep .*\.py`;

ok $output eq 'test.py
uncommitted.py
', 'Both test Python files are present';

system('git add test.py');
ok !$?;

$output = `git commit 2>&1`;

ok $output eq "test.py:1:1: F401 'datetime' imported but unused
test.py:3:80: E501 line too long (97 > 79 characters)
test.py:5:31: E225 missing whitespace around operator
", 'flake8 ran on committed Python file';

$output = `git reset`;
ok !$?;

done_testing;