#!perl

# Copyright (C) 2005-2006, The Perl Foundation.
# $Id: cmd_eof.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 4

eval_is {eof} \
  {wrong # args: should be "eof channelId"} \
  {no args}

eval_is {eof a b} \
  {wrong # args: should be "eof channelId"} \
  {too many args}

eval_is {eof espn-ocho} \
  {can not find channel named "espn-ocho"} \
  {invalid channel}

is [eof stdin] 0 {eof an open channel}

# TODO (#40776): create test files and read from them, testing the eof condition.


syntax highlighted by Code2HTML, v. 0.9.1