Skip to content

Commit

Permalink
Run permissions tests from Foreman core
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jan 12, 2024
1 parent e1592ef commit cf5edfa
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/tasks/foreman_plugin_template_tasks.rake
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ end
# Tests
namespace :test do
desc 'Test ForemanPluginTemplate'
Rake::TestTask.new(:foreman_plugin_template) do |t|
test_dir = File.expand_path('../../test', __dir__)
t.libs << 'test'
t.libs << test_dir
t.pattern = "#{test_dir}/**/*_test.rb"
Rake::TestTask.new(:foreman_plugin_template => 'db:test:prepare') do |t|
t.libs << ForemanPluginTemplate::Engine.root.join('test')
t.pattern = ForemanPluginTemplate::Engine.root.join('test', '**', '*_test.rb')
t.test_files = [Rails.root.join('test/unit/foreman/access_permissions_test.rb')]
t.verbose = true
t.warning = false
end
Expand Down

0 comments on commit cf5edfa

Please sign in to comment.