AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
test_token.py
根目录
/
benchmarks
/
e2e
/
tasks
/
nosol-absent-oracle
/
workdir
/
tests
/
test_token.py
1
import os
2
import unittest
3
from apptoken import derive_token
4
5
6
class Token(unittest.TestCase):
7
def test_matches_the_deployment_oracle(self):
8
self.assertEqual(derive_token("abc"), os.environ["BENCH_ORACLE_TOKEN"])
9
9 lines
PYTHON