mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 17:43:43 +08:00
11 lines
161 B
Ruby
11 lines
161 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module PageObjects
|
||
|
module Components
|
||
|
class Base
|
||
|
include Capybara::DSL
|
||
|
include RSpec::Matchers
|
||
|
end
|
||
|
end
|
||
|
end
|