mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
13 lines
326 B
Ruby
Vendored
13 lines
326 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
RSpec.describe DiscourseAi::Agents::Researcher do
|
|
subject(:researcher) { described_class.new }
|
|
|
|
before { enable_current_plugin }
|
|
|
|
it "renders schema" do
|
|
expect(researcher.tools).to eq(
|
|
[DiscourseAi::Agents::Tools::Google, DiscourseAi::Agents::Tools::WebBrowser],
|
|
)
|
|
end
|
|
end
|