mirror of
https://github.com/discourse/discourse.git
synced 2025-01-28 10:03:01 +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
|