Riot:速度更快的Ruby测试框架
程序员文章站
2022-04-07 15:48:54
...
Riot 是一个新的Ruby测试框架,作者是Justin Knowlden。它的主要目的是提高测试的效率。Justin对Riot与Test::Unit进行了比较,测试结果显示Riot比Test::Unit的测试速度快一倍多。
Riot test示例:
context "a new user" do setup { User.new(:email => 'foo@bar.com') } asserts("email address") { topic.email }.equals('foo@bar.com') end
你可以从Gemcutter上以gem的方式安装Riot:
sudo gem sources -a http://gemcutter.org sudo gem install riot
点击查看更多详情:http://www.rubyinside.com/riot-for-fast-expressive-and-focused-unit-tests-2669.html
主页:http://rdoc.info/projects/thumblemonks/riot
上一篇: python发送邮件
下一篇: Python SMTP发送邮件