Add Splat model, controller, and views

This commit is contained in:
Jason Zimdars
2024-07-23 15:59:32 -05:00
parent bfbfef0bee
commit 932a83197b
16 changed files with 308 additions and 5 deletions
@@ -0,0 +1,7 @@
require "test_helper"
class SplatsControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end
+16
View File
@@ -0,0 +1,16 @@
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
title: The logo isn't big enough
body: Make the logo bigger.
color: dodgerblue
two:
title: Layout is broken
body: The page scrolls horizontally on mobile devices.
color: tomato
three:
title: The text is too small
body: Increase the font size.
color: limegreen
+7
View File
@@ -0,0 +1,7 @@
require "test_helper"
class SplatTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end