I am in chapter 7 of the railstutorial.org, and the author is starting to explain less and less of the syntax and details of the course.

I dont understand the following syntax he uses when creating a user with Factory Girl:

 Factory.define :user do |user|
  user.name                  "Michael Hartl"
  user.email                 "mhartl@example.com"
  user.password              "foobar"
  user.password_confirmation "foobar"
end

I am not copying and pasting the code, so initially, after reading, I wrote my code like this:

user.name = 'Michael Hartl'
etc

and the tests didnt run. After rereading that section, I saw that the author doesnt use the =. What does this mean? If I understood correctly, Factory girl creates a instance of User, and then assigns it these attributes. So how is user.name = 'whatever' incorrect?

I really hate not understanding stuff when doing tutorials, so I'm stuck here until I make sense of it...

link|improve this question

78% accept rate
feedback

2 Answers

up vote 0 down vote accepted

This: user.name = 'Michael Hartl' doesn't work, because the creator of Factory Girl chose a different syntax, namely: user.name "Michael Hartl". I guess you just have accept that Factory Girl works like this. If you want to know why you have to ask the creator.

link|improve this answer
This is the new syntax. It's perfectly right. – Zach Inglis Jul 30 '11 at 14:10
@Zach, what do you mean? I don't understand your comment. What I am trying to say is that the creator chose the following syntax: user.name "Michael Hartl". And not: user.name = "Michael Hartl". Where do I say something is wrong??? – Mischa Jul 30 '11 at 15:28
Can someone please explain what's wrong with this answer?? I don't care about the rep, I want to know what's wrong with it. – Mischa Jul 30 '11 at 15:47
The author of the book wrote the syntax correctly. The poster did not. robots.thoughtbot.com/tagged/factory_girl – Zach Inglis Jul 30 '11 at 17:12
Yes, that is what I am saying! – Mischa Jul 31 '11 at 0:37
feedback

This is ruby block syntax and you'll find it everywhere in rails. Look at your migrations for example. What's confusing you is the syntax of assignment and the fact that brackets/braces are (generally) optional in ruby. This allows more readable code which might otherwise be:

 Factory.define :user do |user|
  user.name("Michael Hartl")
  user.email("mhartl@example.com")
  user.password("foobar")
  user.password_confirmation("foobar")
end

Further reading

link|improve this answer
I am familiar with blocks, thanks. As you said I am just confused by the assignment part. I thought about that, but then, shouldnt the standard assignment syntax (user.name = 'something') work? It doesnt... – agente_secreto Jul 30 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.