运行rails单元和功能测试的Bash函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了运行rails单元和功能测试的Bash函数相关的知识,希望对你有一定的参考价值。

  1. # simple wrappers for running unit and functional tests in rails apps
  2. # INSTEAD OF : ruby test/unit/user_test.rb
  3. # DO THIS : test_unit user
  4. test_unit () {
  5. if [[ -n "$1" ]]; then
  6. ruby test/unit/$1_test.rb;
  7. else
  8. "USAGE : test_unit [name_of_test]"
  9. fi
  10. }
  11.  
  12. # INSTEAD OF : ruby test/functional/users_controller_test.rb
  13. # DO THIS : test_func user
  14. test_func () {
  15. if [[ -n "$1" ]]; then
  16. ruby test/functional/$1_controller_test.rb;
  17. else
  18. "USAGE : test_func [name_of_test]"
  19. fi
  20. }

以上是关于运行rails单元和功能测试的Bash函数的主要内容,如果未能解决你的问题,请参考以下文章

将 Vue.js 添加到 Rails 5.1 和 Mocha 中的单元测试不起作用

当单元测试失败时,Jenkins 成功(Rails)

Rails 测试尝试删除 sql 视图

如何进行高效的Rails单元测试

为啥 Python 不运行我的 bash 代码?

Ruby on Rails 单元测试