2017 © Pedro Peláez
 

cakephp-plugin muffin

FactoryMuffin support for CakePHP 3

image

gourmet/muffin

FactoryMuffin support for CakePHP 3

  • Sunday, April 5, 2015
  • by jadb
  • Repository
  • 2 Watchers
  • 2 Stars
  • 86 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Muffin

Total Downloads License, (*1)

FactoryMuffin for CakePHP 3., (*2)

About

Out of the box FactoryMuffin wraps Faker methods to generate dummy data for your entities., (*3)

I originally started by releasing gourmet/faker, which worked great for inserting dummy data to use in demos and even in tests. However, as time went by, I realized that in many cases, I was just repeating myself. That's when I remembered @savant mentioning FactoryMuffin to me a while back and after a quick look, it became obvious this was exactly what I needed., (*4)

I still use the Faker plugin, because in some cases just absracting everything using factories ends up being even more work. So, if you need granularity when creating dummy data, try it; but in most cases, stick to this one., (*5)

Usage

composer require --dev gourmet/muffin:~0.1

No need to load it in bootstrap.php., (*6)

Example

Assuming you have a Posts model (table, entity and fixture), to create fake data, you'll first need to define the factory in tests/Factory/PostFactory:, (*7)

<?php
namespace App\Test\Factory;

use Gourmet\Muffin\TestSuite\TestFactory;

class PostFactory extends TestFactory
{
    public $title = 'sentence|5';  // a sentence with 5 words
    public $body = 'text';         // some text
    public $author = 'name';       // a person's name
}

Which you can then use in your tests like so:, (*8)

public function setUp()
{
    $this->FeedFactory = new \App\Test\Factory\PostFactory();
}

public function testSomething()
{
    $post = $this->FeedFactory(1); // create a single record
    $this->assertTrue(isset($post->id));

    $this->FeedFactory(10); // create 10 records
}

For more information on the available methods for creating dummy data and how to use them, check the FactoryMuffin and Faker docs., (*9)

License

Copyright (c)2015, Jad Bitar and licensed under The MIT License., (*10)

The Versions

05/04 2015

dev-master

9999999-dev https://github.com/gourmet/muffin

FactoryMuffin support for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp gourmet factory muffin

05/04 2015

v0.1.1

0.1.1.0 https://github.com/gourmet/muffin

FactoryMuffin support for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp gourmet factory muffin

27/03 2015

v0.1.0

0.1.0.0 https://github.com/gourmet/muffin

FactoryMuffin support for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp gourmet factory muffin