Search code examples
ruby-on-railsraketestcase

rake command starts running testcases


when I run rake in console its started executing tested cases. How rake is loaded the test cases and execute them?

dev@ubuntu:~/Project/test_app (master)$ rake

then it started executing test cases.


Solution

  • Seems that test is set to default Rake task: see the code on GinHub.

    That's why > rake executes this default task.