ecoffee/test/controllers/instance_controller_test.rb

13 lines
273 B
Ruby

require "test_helper"
class InstanceControllerTest < ActionDispatch::IntegrationTest
test "should get create" do
get instance_create_url
assert_response :success
end
test "should get show" do
get instance_show_url
assert_response :success
end
end