summaryrefslogtreecommitdiffstats
path: root/lang/python/python-execnet/test.sh
blob: aaa95d4dcf503218e16ec3a3a002fae15c4bab5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

[ "$1" = python3-execnet ] || exit 0

python3 - << 'EOF'

import execnet

# Verify basic module attributes exist
assert hasattr(execnet, 'makegateway')
assert hasattr(execnet, 'MultiChannel')
assert hasattr(execnet, 'Group')
assert execnet.__version__

EOF