#!perl
# Copyright (C) 2004-2006, The Perl Foundation.
# $Id: cmd_format.t 21247 2007-09-13 06:31:01Z paultcochrane $
# the following lines re-execute this as a tcl script
# the \ at the end of these lines makes them a comment in tcl \
use lib qw(languages/tcl/lib tcl/lib lib ../lib ../../lib); # \
use Tcl::Test; #\
__DATA__
source lib/test_more.tcl
plan 3
eval_is {format} \
{wrong # args: should be "format formatString ?arg arg ...?"} \
{format no args}
is [format "%05d" 12] 00012 {zero padding}
is [format "%-*s - %s" 10 foo bar] {foo - bar} {format width check}