10 lines
168 B
Ruby
10 lines
168 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class AdBannersControllerTest < ActionController::TestCase
|
||
|
test "should get widget" do
|
||
|
get :widget
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|