xonsh/tests/test_xonsh.xsh

17 lines
314 B
Text
Raw Normal View History

2016-08-18 21:50:06 +02:00
def test_simple():
assert 1 + 1 == 2
2016-09-09 00:08:13 -04:00
2016-08-18 21:50:06 +02:00
def test_envionment():
$USER = 'snail'
x = 'USER'
assert x in ${...}
assert ${'U' + 'SER'} == 'snail'
2016-09-09 00:08:13 -04:00
2016-08-18 21:50:06 +02:00
def test_xonsh_party():
x = 'xonsh'
y = 'party'
2016-10-01 01:21:19 -04:00
out = $(echo @(x + '-' + y)).strip()
assert out == 'xonsh-party', 'Out really was <' + out + '>, sorry.'