Genshin/GAKUEngine

View on GitHub
core/lib/gaku/testing/factories/student_specialty_factory.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :student_specialty, class: Gaku::StudentSpecialty do
    student
    specialty
    major { true }

    factory :invalid_student_specialty do
      specialty { nil }
    end
  end
end