#!/bin/sh
# -*- mode: sh; coding: utf-8 -*-
# Test getting working trees
# Copyright © 2003 Colin Walters <walters@verbum.org>
#
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
set -e
arg0="$0"
srcdir=`dirname "$arg0"`
. ${srcdir}/test-framework
setup_with_trivial_tla_archives
test_class "get"
begin_test "1-arg get"
tla get jane@example.com--2003/hello-world--mainline--1.0
dir_exists hello-world--mainline--1.0--base-0
test -f hello-world--mainline--1.0--base-0/README
test -f hello-world--mainline--1.0--base-0/hello-world.c
end_test
begin_test "2-arg get"
tla get jane@example.com--2003/hello-world--mainline--1.0 hello-world
dir_exists hello-world
test -f hello-world/README
test -f hello-world/hello-world.c
end_test
clean_workdir
# tag: Colin Walters Wed, 17 Sep 2003 00:11:49 -0400 (test-get.sh)
#
syntax highlighted by Code2HTML, v. 0.9.1