notebook/test/controllers/data_controller_test.rb
2019-10-13 10:09:34 -05:00

15 lines
272 B
Ruby

require 'test_helper'
class DataControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get data_index_url
assert_response :success
end
test "should get recyclebin" do
get data_recyclebin_url
assert_response :success
end
end