Añade el plugin Redmine Git Server 0.4

This commit is contained in:
Manuel Cillero 2021-05-14 16:45:54 +02:00
parent 525527a55b
commit 4b46a7472e
30 changed files with 485 additions and 0 deletions

View file

@ -0,0 +1,10 @@
require "spec_helper"
describe "DefacePaths" do
it "should app overrides paths" do
overrides_paths = Rails.application.paths["app/overrides"]
this_plugin_paths = Rails.root.join("plugins/redmine_base_deface/app/overrides")
assert overrides_paths.include?(this_plugin_paths.to_s),
"The init.rb of this very plugin should add every plugins' app/overrides to rails paths for app/overrides"
end
end