diff options
Diffstat (limited to 'lib/vendor/excon/spec/helpers')
-rw-r--r-- | lib/vendor/excon/spec/helpers/file_path_helpers.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/vendor/excon/spec/helpers/file_path_helpers.rb b/lib/vendor/excon/spec/helpers/file_path_helpers.rb new file mode 100644 index 0000000..2424ec6 --- /dev/null +++ b/lib/vendor/excon/spec/helpers/file_path_helpers.rb @@ -0,0 +1,22 @@ +# Todo: s/tests/specs when migration is complete +def get_abs_path(*parts) + File.join(File.expand_path('../../..', __FILE__), 'tests', *parts) +end + +def data_path(*parts) + get_abs_path('data', *parts) +end + +def rackup_path(*parts) + get_abs_path('rackups', *parts) +end + +def webrick_path(*parts) rackup_path(*parts); end + +def unicorn_path(*parts) rackup_path(*parts); end + +def puma_path(*parts) rackup_path(*parts); end + +def exec_path(*parts) + get_abs_path('servers', *parts) +end |