10 lines
162 B
Ruby
10 lines
162 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class HelloControllerTest < ActionController::TestCase
|
||
|
test "should get world" do
|
||
|
get :world
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|