aboutsummaryrefslogtreecommitdiff
path: root/tests/exists.test
blob: 7531b0ce0346e68c58e9fcefecbfec706bfb95f9 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
source [file dirname [info script]]/testing.tcl

needs cmd exists
constraint cmd lambda

test exists-1.1 "Exists var" {
	set a 1
	exists a
} 1

test exists-1.2 "Exists var" {
	unset -nocomplain b
	exists b
} 0

test exists-1.3 "Exists -var" {
	exists -var a
} 1

test exists-1.4 "Exists -var" {
	exists -var b
} 0

test exists-1.5 "Exists in proc" {
	proc a {name} { exists $name }
	a ::a
} 1

test exists-1.6 "Exists in proc" {
	a ::b
} 0

test exists-1.7 "Exists in proc" {
	a name
} 1

test exists-1.8 "Exists in proc" {
	a none
} 0

test exists-1.9 "Exists -proc" {
	exists -proc a
} 1

test exists-1.10 "Exists -proc" {
	exists -proc bogus
} 0

test exists-1.11 "Exists -proc" {
	exists -proc info
} 0

test exists-1.12 "Exists -command" {
	exists -command a
} 1

test exists-1.13 "Exists -command" {
	exists -command info
} 1

test exists-1.14 "Exists -command" {
	exists -command bogus
} 0

test exists-1.15 "Exists local lambda after exit" lambda {
	proc a {} {
		local lambda {} {dummy}
	}
	exists -proc [a]
} 0

test exists-1.16 "Exists local lambda" lambda {
	proc a {} {
		exists -proc [local lambda {} {dummy}]
	}
	a
} 1

test exists-1.17 {exists usage} -body {
	exists -dummy blah
} -returnCodes error -result {bad option "-dummy": must be -alias, -command, -proc, or -var}

test exists-1.18 {exists usage} -body {
	exists abc def ghi
} -returnCodes error -result {wrong # args: should be "exists ?option? name"}

testreport