mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 02:28:33 +08:00
13 lines
258 B
Ruby
13 lines
258 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe ManifestJsonController do
|
|
context 'index' do
|
|
it 'returns the right output' do
|
|
title = 'MyApp'
|
|
SiteSetting.title = title
|
|
get :index
|
|
expect(response.body).to include(title)
|
|
end
|
|
end
|
|
end
|