mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 04:26:51 +08:00
15 lines
262 B
Ruby
Vendored
15 lines
262 B
Ruby
Vendored
# frozen_string_literal: true
|
||
|
||
RSpec.describe "Anonymous" do
|
||
fab!(:topic)
|
||
|
||
before { chat_system_bootstrap }
|
||
|
||
context "when anonymous" do
|
||
it "doesn’t cause issues" do
|
||
visit("/")
|
||
|
||
expect(page).to have_content(topic.title)
|
||
end
|
||
end
|
||
end
|