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