From a09983ae35713f5a2bbb100981116d31ce99826e Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 20 Jul 2020 12:26:25 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-2-stable-ee --- spec/support/helpers/fast_rails_root.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 spec/support/helpers/fast_rails_root.rb (limited to 'spec/support/helpers/fast_rails_root.rb') diff --git a/spec/support/helpers/fast_rails_root.rb b/spec/support/helpers/fast_rails_root.rb new file mode 100644 index 00000000000..1510fe0825c --- /dev/null +++ b/spec/support/helpers/fast_rails_root.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +# For specs which don't load Rails, provide a path to Rails root +module FastRailsRoot + RAILS_ROOT = File.absolute_path("#{__dir__}/../../..") + + def rails_root_join(*args) + File.join(RAILS_ROOT, *args) + end +end -- cgit v1.2.3