Add RSpec methods for WebDAV actions for request specs
This commit is contained in:
11
spec/support/rspec_matchers.rb
Normal file
11
spec/support/rspec_matchers.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user