diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-28 00:16:07 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-28 00:16:07 -0400 |
commit | b496a29a7de381765f3c45ced9fa18f026b2e314 (patch) | |
tree | 34f6558ffed34b0ec922c90e6407d165e9256b59 /test/controllers | |
parent | d09db2d6d0727faba8e5078900f2fbd1e18ea49f (diff) | |
download | wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.tar.gz wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.tar.bz2 wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.zip |
serve
Diffstat (limited to 'test/controllers')
-rw-r--r-- | test/controllers/wittle/puzzles_controller_test.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/controllers/wittle/puzzles_controller_test.rb b/test/controllers/wittle/puzzles_controller_test.rb new file mode 100644 index 0000000..d1a3ca7 --- /dev/null +++ b/test/controllers/wittle/puzzles_controller_test.rb | |||
@@ -0,0 +1,12 @@ | |||
1 | require "test_helper" | ||
2 | |||
3 | module Wittle | ||
4 | class PuzzlesControllerTest < ActionDispatch::IntegrationTest | ||
5 | include Engine.routes.url_helpers | ||
6 | |||
7 | test "should get index" do | ||
8 | get puzzles_index_url | ||
9 | assert_response :success | ||
10 | end | ||
11 | end | ||
12 | end | ||