Skip to content

Instantly share code, notes, and snippets.

@srih4ri
Created November 7, 2012 17:27
Show Gist options
  • Save srih4ri/4033076 to your computer and use it in GitHub Desktop.
Save srih4ri/4033076 to your computer and use it in GitHub Desktop.
desc 'Run Devise tests for all ORMs.'
task :tests do
Dir[File.join(File.dirname(__FILE__), 'test', 'orm', '*.rb')].each do |file|
orm = File.basename(file).split(".").first
system "rake test DEVISE_ORM=#{orm}"
end
end
task :default => :tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment