10 lines
165 B
Ruby
Executable file
10 lines
165 B
Ruby
Executable file
require 'test_helper'
|
|
|
|
class ContactsControllerTest < ActionController::TestCase
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
|
|
end
|