add Axis, Category and Subject
This commit is contained in:
27
spec/models/axis_spec.rb
Normal file
27
spec/models/axis_spec.rb
Normal file
@@ -0,0 +1,27 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: axes
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_axes_on_name (name) UNIQUE
|
||||
#
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe(Axis, type: :model) do
|
||||
describe "associations" do
|
||||
it { is_expected.to(have_many(:subjects)) }
|
||||
end
|
||||
|
||||
describe "validations" do
|
||||
subject { create :axis }
|
||||
|
||||
it { is_expected.to(validate_presence_of(:name)) }
|
||||
it { is_expected.to(validate_uniqueness_of(:name)) }
|
||||
end
|
||||
end
|
||||
25
spec/models/category_spec.rb
Normal file
25
spec/models/category_spec.rb
Normal file
@@ -0,0 +1,25 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: categories
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_categories_on_name (name) UNIQUE
|
||||
#
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe(Category, type: :model) do
|
||||
describe "associations" do
|
||||
it { is_expected.to(have_many(:subjects)) }
|
||||
end
|
||||
|
||||
describe "validations" do
|
||||
it { is_expected.to(validate_presence_of(:name)) }
|
||||
it { is_expected.to(validate_uniqueness_of(:name)) }
|
||||
end
|
||||
end
|
||||
38
spec/models/subject_spec.rb
Normal file
38
spec/models/subject_spec.rb
Normal file
@@ -0,0 +1,38 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: subjects
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
# axis_id :bigint not null
|
||||
# category_id :bigint not null
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_subjects_on_axis_id (axis_id)
|
||||
# index_subjects_on_category_id (category_id)
|
||||
# index_subjects_on_name (name) UNIQUE
|
||||
#
|
||||
# Foreign Keys
|
||||
#
|
||||
# fk_rails_... (axis_id => axes.id)
|
||||
# fk_rails_... (category_id => categories.id)
|
||||
#
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe(Subject, type: :model) do
|
||||
describe "associations" do
|
||||
it { is_expected.to(belong_to(:axis)) }
|
||||
it { is_expected.to(belong_to(:category)) }
|
||||
# it { is_expected.to(have_many(:questions)) }
|
||||
end
|
||||
|
||||
describe "validations" do
|
||||
subject { create :subject }
|
||||
|
||||
it { is_expected.to(validate_presence_of(:name)) }
|
||||
it { is_expected.to(validate_uniqueness_of(:name)) }
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user