Merge pull request #3794 from tgxworld/add_web_manifes

FEATURE: Add web manifest for Chrome users.
This commit is contained in:
Régis Hanol
2015-09-23 11:35:14 +02:00
4 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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