mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
9 lines
179 B
Ruby
9 lines
179 B
Ruby
require "test_helper"
|
|
|
|
class ProfilesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get show" do
|
|
get profiles_show_url
|
|
assert_response :success
|
|
end
|
|
end
|