mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
13 lines
257 B
Ruby
13 lines
257 B
Ruby
require 'spec_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
|