Cross Reference: if.t
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
t
/
base
/
if.t
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
1
N/A
#!./perl
1
N/A
1
N/A
# $RCSfile:
if.t
,v $$Revision: 4.1 $$Date: 92/08/07 18:27:03 $
1
N/A
1
N/A
print
"1..2\n"
;
1
N/A
1
N/A
# first test to see if we can run the tests.
1
N/A
1
N/A
$x =
'test'
;
1
N/A
if
($x
eq
$x)
{
print
"ok 1\n"
; }
else
{
print
"not ok 1\n"
;}
1
N/A
if
($x
ne
$x)
{
print
"not ok 2\n"
; }
else
{
print
"ok 2\n"
;}