首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

rails3测试相干

2012-12-25 
rails3测试相关rake db:create:all --建立test,development,product三个数据库rake db:test:prepare --将d

rails3测试相关
rake db:create:all --建立test,development,product三个数据库
rake db:test:prepare --将development数据库表建到test数据库,这一步必须执行,不然执行rake test 会报表不存在错误。
ActiveRecord::StatementInvalid: Mysql::Error: Table 'depot_test.products' doesn't exist: DELETE FROM `products`
rake test  --集成测试
rake test:units --单元测试
rake test:functionals --功能测试

热点排行