我需要一个带有鼻子的 python 单元测试 sqlalchemy 模型的示例
有人可以告诉我如何为我使用鼻子创建的 sqlalchemy 模型编写单元测试吗?
我只需要一个简单的例子。
谢谢。
Can someone show me how to write unit tests for sqlalchemy model I created using nose.
I just need one simple example.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以简单地创建一个内存中的 SQLite 数据库并将您的会话绑定到该数据库。
例子:
You can simply create an in-memory SQLite database and bind your session to that.
Example:
查看 fixture 项目。 我们使用鼻子来测试它,这也是一种以声明方式定义要测试的数据的方法,那里会有一些广泛的示例供您使用!
另请参阅夹具文档。
Check out the fixture project. We used nose to test that and it's also a way to declaratively define data to test against, there will be some extensive examples for you to use there!
See also fixture documentation.