Commit 36dac4a52f575724de038bf6ffe2c30ed40e7325

Authored by Paulo Meireles
1 parent c0917300

Add test directory from root to $LOAD_PATH for plugins tests

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
lib/tasks/plugins_tests.rake
... ... @@ -5,6 +5,7 @@ def define_task(test, plugins_folder='plugins', plugin = '*')
5 5 test_files = Dir.glob(File.join(Rails.root, plugins_folder, plugin, 'test', test[:folder], '**', '*_test.rb'))
6 6 desc 'Runs ' + (plugin != '*' ? plugin : 'plugins') + ' ' + test[:name] + ' tests'
7 7 Rake::TestTask.new(test[:name].to_sym => 'db:test:prepare') do |t|
  8 + t.libs << 'test'
8 9 t.test_files = test_files
9 10 t.verbose = true
10 11 end
... ...