summaryrefslogtreecommitdiff
path: root/test/controllers/home_controller_test.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-05 21:25:43 -0400
committerDavid Gay <david@davidgay.org>2021-04-05 21:28:02 -0400
commitf7462223a0b5033412c127d7820ab40a042462c8 (patch)
tree74c11369bc54640a35e25a8297014f95c8fae11c /test/controllers/home_controller_test.rb
parent24221a37d380736cf566e989cfbc2dee02b45378 (diff)
Use tailwind's postcss 7 compatability version, and prove it's working
Diffstat (limited to 'test/controllers/home_controller_test.rb')
-rw-r--r--test/controllers/home_controller_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/controllers/home_controller_test.rb b/test/controllers/home_controller_test.rb
new file mode 100644
index 0000000..caa97da
--- /dev/null
+++ b/test/controllers/home_controller_test.rb
@@ -0,0 +1,8 @@
+require "test_helper"
+
+class HomeControllerTest < ActionDispatch::IntegrationTest
+ test "should get index" do
+ get home_path
+ assert_response :success
+ end
+end