module-and-template-store/test/controllers/search_controller_test.rb

15 lines
241 B
Ruby
Raw Normal View History

2014-01-10 08:48:23 +00:00
require 'test_helper'
class SearchControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get show" do
get :show
assert_response :success
end
end