Sha256: c75f85bd98670d0f75fa1175da0b8da7e70e3100b3042330c147943cff6f98b0

Contents?: true

Size: 567 Bytes

Versions: 25

Compression:

Stored size: 567 Bytes

Contents

FactoryBot.define do

  factory :organization do
    contact_email { Faker::Internet.email }
    description 'a great org'
    locale 'en'
    settings {}
    book
  end

  factory :base, parent: :organization do
    public true
    name 'base'
    login_methods Mumukit::Login::Settings.login_methods
  end

  factory :public_organization, parent: :organization do
    public true
    name 'the-public-org'
    login_methods Mumukit::Login::Settings.login_methods
  end

  factory :private_organization, parent: :organization do
    name 'the-private-org'
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
mumuki-laboratory-5.7.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.6.3 spec/factories/organization_factory.rb
mumuki-laboratory-5.6.2 spec/factories/organization_factory.rb
mumuki-laboratory-5.6.1 spec/factories/organization_factory.rb
mumuki-laboratory-5.6.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.5.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.4.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.3.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.2.1 spec/factories/organization_factory.rb
mumuki-laboratory-5.2.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.1.1 spec/factories/organization_factory.rb
mumuki-laboratory-5.1.0 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.12 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.11 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.10 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.9 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.8 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.7 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.6 spec/factories/organization_factory.rb
mumuki-laboratory-5.0.5 spec/factories/organization_factory.rb