Skip to content

Commit

Permalink
Add missing test for DevelopmentController
Browse files Browse the repository at this point in the history
  • Loading branch information
unoduetre committed Jun 28, 2024
1 parent a0d8edf commit 5b6fbf3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/controllers/development_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require "test_helper"

class DevelopmentControllerTest < ActionController::TestCase
test "shows inde page" do
get :index
assert_response :ok
assert response.body.include?("This page is intended to be shown in development and on Heroku review apps.")
end
end

0 comments on commit 5b6fbf3

Please sign in to comment.