remove unecessary specs

This commit is contained in:
Chris
2025-11-29 09:47:18 -08:00
parent 2e7010e558
commit d8b378e680
3 changed files with 0 additions and 78 deletions

View File

@@ -1,26 +0,0 @@
# == Schema Information
#
# Table name: team_memberships
#
# id :bigint not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# team_id :bigint not null
# user_id :bigint not null
#
# Indexes
#
# index_team_memberships_on_team_id (team_id)
# index_team_memberships_on_user_id (user_id)
# index_team_memberships_on_user_id_and_team_id (user_id,team_id) UNIQUE
#
# Foreign Keys
#
# fk_rails_... (team_id => teams.id)
# fk_rails_... (user_id => users.id)
#
require 'rails_helper'
RSpec.describe TeamMembership, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,26 +0,0 @@
# == Schema Information
#
# Table name: team_resources
#
# id :bigint not null, primary key
# resourceable_type :string not null
# created_at :datetime not null
# updated_at :datetime not null
# resourceable_id :bigint not null
# team_id :bigint not null
#
# Indexes
#
# index_team_resources_on_resourceable (resourceable_type,resourceable_id)
# index_team_resources_on_team_and_resourceable (team_id,resourceable_type,resourceable_id) UNIQUE
# index_team_resources_on_team_id (team_id)
#
# Foreign Keys
#
# fk_rails_... (team_id => teams.id)
#
require 'rails_helper'
RSpec.describe TeamResource, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,26 +0,0 @@
# == Schema Information
#
# Table name: teams
#
# id :bigint not null, primary key
# name :string not null
# slug :string not null
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint not null
#
# Indexes
#
# index_teams_on_account_id (account_id)
# index_teams_on_account_id_and_name (account_id,name) UNIQUE
# index_teams_on_slug (slug) UNIQUE
#
# Foreign Keys
#
# fk_rails_... (account_id => accounts.id)
#
require 'rails_helper'
RSpec.describe Team, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end