Files
codeocean/test/controllers/exercise_collections_controller_test.rb
2017-09-27 16:08:56 +02:00

15 lines
254 B
Ruby

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