Scaffold exercise collection routes

This commit is contained in:
Maximilian Grundke
2017-09-27 16:08:56 +02:00
parent af67208fd3
commit 44a3cabe98
6 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,14 @@
require 'test_helper'
class ExerciseCollectionsControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get show" do
get :show
assert_response :success
end
end