File: show_contents.pl

package info (click to toggle)
darcs 2.0.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,400 kB
  • ctags: 1,048
  • sloc: haskell: 24,937; perl: 9,736; sh: 3,369; ansic: 1,913; makefile: 17; xml: 14
file content (25 lines) | stat: -rw-r--r-- 820 bytes parent folder | download
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
#!/usr/bin/env perl

use lib 'lib/perl';
use Test::More 'no_plan';
use Test::Darcs;
use Shell::Command;
use strict;

init_tmp_repo();
touch 'foo';
darcs 'add foo';
`echo first > foo`;
darcs 'record -a -m "first edit" -A author1';
`echo second > foo`;
darcs 'record -a -m "second edit" -A author2';
darcs 'tag t1 -A moi';
`echo third > foo`;
darcs 'record -a -m "third edit" -A author3';
`echo fourth > foo`;
darcs 'record -a -m "fourth edit" -A author4';
`echo unrecorded > foo`;
like( darcs('show contents foo'), qr/fourth/, 'show contents sans version arguments' );
like( darcs('show contents foo -p third'), qr/third/, 'show contents -p' );
like( darcs('show contents foo --match="author1 first"'), qr/first/, 'show contents --match' );
like( darcs('show contents foo --tag t1'), qr/second/, 'show contents --tag' );