#factory #fixtures #replace #development-tools

factory_steel

A Rust fixture replacement greatly inspired by factory_bot and factory_boy

1 unstable release

Uses old Rust 2015

0.1.0 Apr 23, 2018

#14 in #fixtures

MIT license

5KB

Factory_Steel

Build Status

Factory_steel is a fixture replacement greatly inspired by factory_bot and factory_boy. Currently it is an experimental project. Although usable, it is still very limited in term of features and reliability.

Getting started

Add this to your Cargo.toml:

[dependencies]
factory_steel = "0.1.0"

Example

#[macro_use]
extern crate factory_steel;
use factory_steel::Factory;

#[derive(Factory)]
struct Post {
    #[facto(default="New post")]
    title: String,
}

fn main() {
    let post = Post::create();
    
    //Prints New post
    println!("{}", post.title);
}

Contributing

Contributions are welcome! This crate is work in progress, and a lot of work remains to be done. Have a look at the issues, and open a pull request if you'd like to add some functionality.

Dependencies

~2MB
~46K SLoC