summary refs log tree commit diff stats
path: root/rails/test/controllers
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 23:20:31 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 23:20:31 -0500
commitece62b9eb3e2f3995715c32608f1de91d98a22be (patch)
tree2322ac861fe821362a893870d5b2c441132f2204 /rails/test/controllers
parent83437f5895fd4f110694e66c9d939ff492bc2e1b (diff)
downloadlingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.tar.gz
lingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.tar.bz2
lingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.zip
Rails engine no longer needed
Diffstat (limited to 'rails/test/controllers')
-rw-r--r--rails/test/controllers/.keep0
-rw-r--r--rails/test/controllers/lingo/scores_controller_test.rb17
2 files changed, 0 insertions, 17 deletions
diff --git a/rails/test/controllers/.keep b/rails/test/controllers/.keep deleted file mode 100644 index e69de29..0000000 --- a/rails/test/controllers/.keep +++ /dev/null
diff --git a/rails/test/controllers/lingo/scores_controller_test.rb b/rails/test/controllers/lingo/scores_controller_test.rb deleted file mode 100644 index 7551923..0000000 --- a/rails/test/controllers/lingo/scores_controller_test.rb +++ /dev/null
@@ -1,17 +0,0 @@
1require "test_helper"
2
3module Lingo
4 class ScoresControllerTest < ActionDispatch::IntegrationTest
5 include Engine.routes.url_helpers
6
7 test "should get index" do
8 get scores_index_url
9 assert_response :success
10 end
11
12 test "should get update" do
13 get scores_update_url
14 assert_response :success
15 end
16 end
17end