mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 21:18:34 +08:00
9 lines
223 B
Ruby
Vendored
9 lines
223 B
Ruby
Vendored
# 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
|