Genshin/GAKUEngine

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

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :note, class: Gaku::Note do
    title { 'Excellent' }
    content { 'Excellent student' }

    factory :invalid_note do
      title { nil }
    end
  end
end