Machinist.

This commit is contained in:
Rico Sta. Cruz 2012-03-21 18:38:45 +08:00
parent cad0ca2bff
commit 36fae08dcf
1 changed files with 46 additions and 0 deletions

46
machinist.md Normal file
View File

@ -0,0 +1,46 @@
title: Machinist
---
### Installing
# Gemfile
gem 'machinist', '>= 2.0.0.beta2', group: 'test'
# ~$ bundle
# ~$ rails generate machinist:install
### Building objects
User.make
# `make` builds it, and `make!` builds+saves it
User.make!
User.make! name: "David"
User.make!(:admin)
### Defining blueprints
User.blueprint do
name { "User #{sn}" }
email { "user-#{sn}@example.com" }
end
User.blueprint(:admin) do
name { "Admin User #{sn}" }
admin { true }
end
### Associations
Post.blueprint do
author { User.make }
comments(3) # Makes 3 comments (has_many / habtm)
author # autodetect (Assumes there's User.blueprint)
end
### References
* [https://github.com/notahat/machinist](https://github.com/notahat/machinist)