mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-31 18:33:26 +00:00
14 lines
316 B
Ruby
14 lines
316 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe DiscourseAi::Personas::Researcher do
|
|
let(:researcher) { subject }
|
|
|
|
before { enable_current_plugin }
|
|
|
|
it "renders schema" do
|
|
expect(researcher.tools).to eq(
|
|
[DiscourseAi::Personas::Tools::Google, DiscourseAi::Personas::Tools::WebBrowser],
|
|
)
|
|
end
|
|
end
|