File: changes_send_context.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-- 672 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 qw/no_plan/;
use Shell::Command;
use Test::Darcs;
use Shell::Command;
use strict;

init_tmp_repo();

{
  my $testname = "RT#544 using context created with 8-bit chars";
  touch 'foo';
  like ( darcs("record -la -m 'add\212 foo'"), qr/Finished record/,
         'recorded patch adding foo');
  my $context = darcs('changes --context');
  open(CON, ">context");
  print CON $context;
  close(CON);
  system 'date > foo';
  like ( darcs("record -a -m 'date foo'"), qr/Finished record/,
         'recorded patch modifying foo');
  like ( darcs('send -a -o patch --context context .'), qr/Wrote patch to/, $testname );
}