add "rake test_i18n" to rakefile; tests pass

This commit is contained in:
Steve Strassmann
2013-04-29 15:30:18 -04:00
parent 8358e866cf
commit 39dd251b02

View File

@@ -330,6 +330,12 @@ task :migrate, [:env] do |t, args|
sh(django_admin(:lms, args.env, 'migrate'))
end
desc "Run tests for the internationalization library"
task :test_i18n do
test = File.join(REPO_ROOT, "i18n", "tests")
sh("nosetests #{test}")
end
Dir["common/lib/*"].select{|lib| File.directory?(lib)}.each do |lib|
task_name = "test_#{lib}"