mirror of
https://github.com/jbranchaud/til
synced 2026-01-04 23:58:01 +00:00
Add Override The Initial Sequence Value as a ruby til.
This commit is contained in:
21
ruby/override-the-initial-sequence-value.md
Normal file
21
ruby/override-the-initial-sequence-value.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Override The Initial Sequence Value
|
||||
|
||||
[FactoryGirl sequences](https://github.com/thoughtbot/factory_girl/blob/master/GETTING_STARTED.md#sequences)
|
||||
can be defined with an initial starting value
|
||||
|
||||
```ruby
|
||||
FactoryGirl.define do
|
||||
sequence :email, 1000 do |n|
|
||||
"person#{n}@example.com"
|
||||
end
|
||||
end
|
||||
```
|
||||
|
||||
thus:
|
||||
|
||||
```ruby
|
||||
> FactoryGirl.generate :email
|
||||
=> "person1000@example.com"
|
||||
> FactoryGirl.generate :email
|
||||
=> "person1001@example.com"
|
||||
```
|
||||
Reference in New Issue
Block a user