mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
276 B
Ruby
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
|