mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-12 00:31:48 -05: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
|