Skip to content

Commit 1c4385c

Browse files
committed
Tests for exported assignments
Signed-off-by: Flynn <[email protected]>
1 parent 336c755 commit 1c4385c

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

testing.md

+18
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ echo 'We have a nonexistant hook?'
7979
#@endif
8080
```
8181

82+
Hit RETURN to continue (this is the wait directive).
83+
<!-- @wait -->
84+
8285
### Assignments and functions
8386

8487
Let's try an assignment.
@@ -88,6 +91,14 @@ FOO="Hello world"
8891
echo "$FOO"
8992
```
9093

94+
`export`ed assignments work too. (The word `export` itself is a noop in
95+
`demosh`, to be clear: variables are always exported.)
96+
97+
```bash
98+
export BAR="Exported hello world"
99+
echo "$BAR"
100+
```
101+
91102
The `$SHELL` environment variable should be overwritten to be `demosh` itself.
92103

93104
```bash
@@ -117,6 +128,13 @@ hello "world"
117128
hello2 "world"
118129
```
119130

131+
Assignments persist across blocks, of course.
132+
133+
```bash
134+
echo $FOO
135+
echo $BAR
136+
```
137+
120138
### `cd`
121139

122140
`cd` is handled internally, because it has to be.

testing.sh

+14
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,19 @@ echo "We have a browser hook!"
3838
echo 'We have a nonexistant hook?'
3939
#@endif
4040

41+
## Hit RETURN to continue (this is the wait directive).
42+
#@wait
43+
4144
# Let's try an assignment.
4245
FOO="Hello world"
4346
echo "$FOO"
4447

48+
# exported assignments work too. (The word export itself is a noop in demosh,
49+
# to be clear: variables are always exported.)
50+
51+
export BAR="Exported hello world"
52+
echo "$BAR"
53+
4554
# The $SHELL environment variable should be overwritten to be demosh itself.
4655
echo "SHELL is $SHELL"
4756

@@ -59,6 +68,11 @@ hello2 () {
5968
hello "world"
6069
hello2 "world"
6170

71+
# Assignments persist across blocks, of course.
72+
73+
echo $FOO
74+
echo $BAR
75+
6276
# cd is handled internally, so this should work.
6377
cd /tmp
6478
pwd

0 commit comments

Comments
 (0)