discourse/plugins/styleguide/spec/integration/assets_spec.rb

23 lines
501 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# frozen_string_literal: true
RSpec.describe "Styleguide assets" do
before do
SiteSetting.styleguide_enabled = true
sign_in(Fabricate(:admin))
end
context "when visiting homepage" do
it "doesnt load styleguide assets" do
get "/"
expect(response.body).to_not include("styleguide")
end
end
context "when visiting styleguide" do
it "loads styleguide assets" do
get "/styleguide"
expect(response.body).to include("styleguide")
end
end
end