mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
13 lines
282 B
Ruby
13 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe DiscourseAi::Agents::Researcher do
|
|
let :researcher do
|
|
subject
|
|
end
|
|
|
|
it "renders schema" do
|
|
expect(researcher.tools).to eq(
|
|
[DiscourseAi::Agents::Tools::Google, DiscourseAi::Agents::Tools::WebBrowser],
|
|
)
|
|
end
|
|
end
|