ruby on rails - RubyMine - Creating the testing folders after initially creating the project without them -
i created project excluding tests , want have tests web application. application not extensive, big enough such don't want re-start project.
is simple creating folder 'test' in application directory?
are there other things have adjust in other parts of program?
thanks in advance.
one option choose test framework , add app (probably adding gem , runing rake task depending of framework)
another option edit config/application.rb
, uncomment line:
# require "rails/test_unit/railtie"
also can create empty rails project , compare current app empty 1 copy/modify files different: config/application.rb
, test/test_helper.rb
Comments
Post a Comment