tap/test/controllers/products_controller_test.rb

25 lines
399 B
Ruby
Raw Normal View History

2014-11-24 20:45:32 +00:00
require 'test_helper'
class ProductsControllerTest < ActionController::TestCase
test "should get new" do
get :new
assert_response :success
end
test "should get show" do
get :show
assert_response :success
end
test "should get edit" do
get :edit
assert_response :success
end
test "should get delete" do
get :delete
assert_response :success
end
end