mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 19:57:41 +00:00
- set up index route to show osyters of a specific result - set up index view, controller method, and route - commented out debug console
10 lines
178 B
Ruby
10 lines
178 B
Ruby
require 'test_helper'
|
|
|
|
class OystersControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get show" do
|
|
get oysters_show_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|