0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 09:19:51 +00:00
Jeffery To 1fbe4b9a8b python-constantly: Update to 23.10.4, add new build dependency
This also adds a test.sh script for the packages feed CI.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2023-11-02 00:27:11 +08:00

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