From d8b378e68028dc3b591182b11fa81e663a70fb06 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 29 Nov 2025 09:47:18 -0800 Subject: [PATCH] remove unecessary specs --- spec/models/team_membership_spec.rb | 26 -------------------------- spec/models/team_resource_spec.rb | 26 -------------------------- spec/models/team_spec.rb | 26 -------------------------- 3 files changed, 78 deletions(-) delete mode 100644 spec/models/team_membership_spec.rb delete mode 100644 spec/models/team_resource_spec.rb delete mode 100644 spec/models/team_spec.rb diff --git a/spec/models/team_membership_spec.rb b/spec/models/team_membership_spec.rb deleted file mode 100644 index 8db9862d..00000000 --- a/spec/models/team_membership_spec.rb +++ /dev/null @@ -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 diff --git a/spec/models/team_resource_spec.rb b/spec/models/team_resource_spec.rb deleted file mode 100644 index 0af69cfd..00000000 --- a/spec/models/team_resource_spec.rb +++ /dev/null @@ -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 diff --git a/spec/models/team_spec.rb b/spec/models/team_spec.rb deleted file mode 100644 index 2b2ea8fc..00000000 --- a/spec/models/team_spec.rb +++ /dev/null @@ -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