FEATURE: Add web manifest for Chrome users.

This commit is contained in:
Guo Xiang Tan
2015-09-20 23:00:30 +08:00
parent 6c6d3a2159
commit 71eab8f4df
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