notebook/test/controllers/main_controller_test.rb
2015-03-27 23:44:15 -05:00

11 lines
276 B
Ruby

require 'test_helper'
# Tests for the MainController class, which serves the model-non-specific
# pages of the site, like the front page.
class MainControllerTest < ActionController::TestCase
test 'should get index' do
get :index
assert_response :success
end
end