Getting Started
View SourceNeoFaker is an Elixir package for generating fake data for testing and development.
Warning
This project is still in early development. Expect breaking changes.
Installation
Add :neo_faker
to your dependencies in mix.exs
:
def deps do
[
{:neo_faker, "~> 0.5.1", only: [:dev, :test], runtime: false}
]
end
Then, fetch the dependencies:
mix deps.get
Usage
Here are some examples of how to use NeoFaker:
iex> Nf.App.name()
"Neo Faker"
iex> Nf.App.description()
"Elixir library for generating fake data in tests and development."
For a complete list of available functions, check out the API Reference.
License
NeoFaker is licensed under the MIT License.