Tapes are now Clips, also they have categories

This commit is contained in:
Roscoe 2025-09-10 03:08:27 +01:00
commit c8732b6332
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
41 changed files with 347 additions and 148 deletions

View file

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

View file

@ -1,6 +1,6 @@
require "test_helper"
class TapesControllerTest < ActionDispatch::IntegrationTest
class ClipsControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end

7
test/fixtures/categories.yml vendored Normal file
View file

@ -0,0 +1,7 @@
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
name: MyString
two:
name: MyString

7
test/fixtures/clips.yml vendored Normal file
View file

@ -0,0 +1,7 @@
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
title: MyString
two:
title: MyString

View file

@ -0,0 +1,7 @@
require "test_helper"
class CategoryTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View file

@ -1,6 +1,6 @@
require "test_helper"
class TapeTest < ActiveSupport::TestCase
class ClipTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end