12 lines
250 B
Ruby
12 lines
250 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe DiscourseAi::AiBot::Personas::Researcher do
|
||
|
let :researcher do
|
||
|
subject
|
||
|
end
|
||
|
|
||
|
it "renders schema" do
|
||
|
expect(researcher.commands).to eq([DiscourseAi::AiBot::Commands::GoogleCommand])
|
||
|
end
|
||
|
end
|