Files
canine/spec/models/build_configuration_spec.rb
2025-08-23 13:40:10 -07:00

30 lines
879 B
Ruby

# == Schema Information
#
# Table name: build_configurations
#
# id :bigint not null, primary key
# driver :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# build_cloud_id :bigint
# project_id :bigint not null
# provider_id :bigint not null
#
# Indexes
#
# index_build_configurations_on_build_cloud_id (build_cloud_id)
# index_build_configurations_on_project_id (project_id)
# index_build_configurations_on_provider_id (provider_id)
#
# Foreign Keys
#
# fk_rails_... (build_cloud_id => build_clouds.id)
# fk_rails_... (project_id => projects.id)
# fk_rails_... (provider_id => providers.id)
#
require 'rails_helper'
RSpec.describe BuildConfiguration, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end