Skip to content
Snippets Groups Projects
Commit 232c4b79 authored by Maxwell Salzberg's avatar Maxwell Salzberg
Browse files

fix for mobile multi stream [ci skip]

parent d38e75c1
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ class MultisController < ApplicationController
respond_with do |format|
format.html{ default_stream_action(stream_klass) }
format.mobile{ default_stream_action(stream_klass) }
format.json{ stream_json(stream_klass) }
end
end
......
......@@ -26,5 +26,10 @@ describe MultisController do
get :index
response.should be_success
end
it 'succeeds on mobile' do
get :index, :format => :mobile
response.should be_success
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment