Skip to content

Commit

Permalink
readme //skipci
Browse files Browse the repository at this point in the history
  • Loading branch information
bchavez authored Jun 18, 2017
1 parent 43d451d commit 2fbb09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var testUsers = new Faker<User>()
.RuleFor(u => u.FullName, (f, u) => u.FirstName + " " + u.LastName)
//And composability of a complex collection.
.RuleFor(u => u.Orders, f => testOrders.Generate(3).ToList())
//After all rules are applied finish with the following action
//Optional: After all rules are applied finish with the following action
.FinishWith((f, u) =>
{
Console.WriteLine("User Created! Id={0}", u.Id);
Expand Down

0 comments on commit 2fbb09c

Please sign in to comment.