mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-23 16:33:02 +01:00
10 lines
157 B
Ruby
10 lines
157 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class AjaxControllerTest < ActionController::TestCase
|
||
|
test "should get ask" do
|
||
|
get :ask
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|