mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 10:29:35 +08:00
12 lines
247 B
Ruby
12 lines
247 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "rails_helper"
|
||
|
|
||
|
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
|