10 lines
181 B
Ruby
10 lines
181 B
Ruby
require 'test_helper'
|
|
|
|
class Public::SendFourrureControllerTest < ActionController::TestCase
|
|
test "should get sending" do
|
|
get :sending
|
|
assert_response :success
|
|
end
|
|
|
|
end
|