mirror of
https://github.com/czhu12/canine.git
synced 2025-12-20 10:19:50 -06:00
remove unecessary specs
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user