Used Turbo Frames/Streams for adding/deleting tasks without refresh entire browser

This commit is contained in:
KaungKaung
2026-01-28 14:12:24 +06:30
parent 910c1912e0
commit 0f5d105be3
10 changed files with 87 additions and 76 deletions

View File

@@ -0,0 +1,8 @@
require "test_helper"
class ProjectsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get projects_index_url
assert_response :success
end
end

View File

@@ -0,0 +1,7 @@
require "test_helper"
class TasksControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end