Files
calligraphy/spec/support/rspec_matchers.rb
2018-01-01 01:12:33 -06:00

12 lines
276 B
Ruby

module ActionDispatch
module Integration
module RequestHelpers
%w[copy move mkcol propfind proppatch lock unlock].each do |method|
define_method method do |path, **args|
process method.to_sym, path, **args
end
end
end
end
end