mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 14:03:58 +08:00
0ee050e208
Add helpers for system testing in plugins
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
|