mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:23:38 +08:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe UserOption do
|
||
|
describe "#chat_separate_sidebar_mode" do
|
||
|
it "is present" do
|
||
|
expect(described_class.new.chat_separate_sidebar_mode).to eq("default")
|
||
|
end
|
||
|
end
|
||
|
end
|