From 39dd251b02a4b7d978dccb02da1bcd7166a4593f Mon Sep 17 00:00:00 2001 From: Steve Strassmann Date: Mon, 29 Apr 2013 15:30:18 -0400 Subject: [PATCH] add "rake test_i18n" to rakefile; tests pass --- rakefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rakefile b/rakefile index 61fc1b2698..2b9cb9fd57 100644 --- a/rakefile +++ b/rakefile @@ -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}"