AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
test_rates.py
根目录
/
benchmarks
/
e2e
/
tasks
/
nosol-network-required
/
workdir
/
tests
/
test_rates.py
1
import unittest
2
from rates import fetch_rate
3
4
5
class Rates(unittest.TestCase):
6
def test_live_rate(self):
7
self.assertAlmostEqual(fetch_rate("EUR"), 1.0873, places=4)
8
8 lines
PYTHON