fac->factory :name, :class, :parent, :aliases do ... end
seq->sequence(:attribute, initial value) { |n| "#{n}" }ass->association :field_name, factory: :factory_name, strategy: :build/:createfbtt->trait do ... endfbtr->transient do ... endfbaa->add_attribute(:field) { ... }
after->after(:create|:build|:stub) { |resource| ... }before->before(:create) { |resource| ... }
fbc->create(:model, attributes)fbcl->create_list(:model, 3, attributes)fbb->build(:model, attributes)fbbs->build_stubbed(:model, attributes)fbbl->build_list(:model, 3, attributes)fbaf->attributes_for(:model, attributes)