mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
10 lines
134 B
Ruby
10 lines
134 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module XPath
|
||
|
class Renderer
|
||
|
def join(*expressions)
|
||
|
expressions.join('/')
|
||
|
end
|
||
|
end
|
||
|
end
|