mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
12 lines
257 B
Ruby
12 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
|