notebook/test/controllers/notifications_controller_test.rb
2020-04-20 18:58:12 -05:00

15 lines
287 B
Ruby

require 'test_helper'
class NotificationsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get notifications_index_url
assert_response :success
end
test "should get show" do
get notifications_show_url
assert_response :success
end
end