diff options
Diffstat (limited to 'lib/tasks/redmine.rake')
-rw-r--r-- | lib/tasks/redmine.rake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/tasks/redmine.rake b/lib/tasks/redmine.rake index c0b2b1d9e..89450c1c2 100644 --- a/lib/tasks/redmine.rake +++ b/lib/tasks/redmine.rake @@ -171,6 +171,13 @@ DESC t.verbose = true t.pattern = "plugins/#{ENV['NAME'] || '*'}/test/integration/**/*_test.rb" end + + desc 'Runs the plugins ui tests.' + Rake::TestTask.new :ui => "db:test:prepare" do |t| + t.libs << "test" + t.verbose = true + t.pattern = "plugins/#{ENV['NAME'] || '*'}/test/ui/**/*_test.rb" + end end end end |