mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 23:32:45 +00:00
14 lines
282 B
Ruby
14 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
|