mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 09:19:51 +00:00
This also adds a test.sh script for the packages feed CI. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
28 lines
605 B
Bash
28 lines
605 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" = python3-constantly ] || exit 0
|
|
|
|
python3 - << 'EOF'
|
|
|
|
from constantly import NamedConstant, Names
|
|
class Letters(Names):
|
|
a = NamedConstant()
|
|
b = NamedConstant()
|
|
c = NamedConstant()
|
|
|
|
assert Letters.lookupByName('a') is Letters.a
|
|
assert Letters.a < Letters.b
|
|
assert Letters.b < Letters.c
|
|
assert Letters.a < Letters.c
|
|
|
|
from constantly import ValueConstant, Values
|
|
class STATUS(Values):
|
|
OK = ValueConstant('200')
|
|
FOUND = ValueConstant('302')
|
|
NOT_FOUND = ValueConstant('404')
|
|
|
|
assert STATUS.OK.value == '200'
|
|
assert STATUS.lookupByValue('404') == STATUS.NOT_FOUND
|
|
|
|
EOF
|