9 lines
149 B
Ruby
9 lines
149 B
Ruby
require "test_helper"
|
|
|
|
class LogsControllerTest < ActionController::TestCase
|
|
def test_index
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
|
|
end
|