views:

91

answers:

2

I want to start testing the JavaScript in my Rails apps with qUnit and I'm wondering how to keep the test JavaScript and test runner HTML page under version control (I'm using Git, of course) but keep them off the production server when I deploy the app with Capistrano. My first thought is to let Capistrano send all the code over as usual including the test files, and write a task to delete them at the end of the deployment process. This seems like sort of a hack, though. Is there a cleaner way to tell Capistrano to ignore certain parts of the repository when deploying?

A: 

You could have those tests in a test branch (on which you merge your main branch before any test)

That way, when you ask Capistrano to deploy what is on your main branch, no test of any sort is ever included.

VonC
+2  A: 

Hi Jimmy,

There are many ways to accomplish this, you can keep your tests in a test branch of the app like VonC suggested, but that would mean that you would make all your changes in your main branch and then sync it to your test branch. (Not without its merits, but sometimes a pain)

You can use the .gitignore file to your directory.

Any file that you add to this will not be added to your repository. Since capistrano just pulls and posts from your repository, not having the files included will keep them off your production server.

Last but not least, if you want the test files in your main repository for version control, you can add a recipe to your config/deploy.rb file.. something like:

desc "Remove Test Files"  
    task :remove_test_files , :roles => :web do
      sudo %{rm -f #{current_path}/public/javascripts/testfile.js}
      sudo %{rm -f #{current_path}/public/javascripts/anothertestfile.js}
    end

after 'deploy:remove_test_files'

And specify the files you want to remove, this will remove any files you want when you deploy. :)

Any of the above will work. Pick the method that works for you.

Dustin M.
I didn't see your answer at the time. +1
VonC
Thanks Von. Appreciate it.
Dustin M.