On Saturday, September 5, 2015, Sadaf Noor <em...@sadafnoor.com> wrote:

> Also posted at stackoverflow:
> http://stackoverflow.com/questions/32414734/setting-foreign-keys-at-rails-yet-record-association-name-returning-nil
>
> ( Please don't downvote )
>
>
> 2015-09-05 21:22 GMT+06:00 Sadaf Noor <em...@sadafnoor.com
> <javascript:_e(%7B%7D,'cvml','em...@sadafnoor.com');>>:
>
>> Please help me to understand why this piece of rspec code is behaving
>> this way. I am setting product_id to my record, and it is asserting true,
>> but yet record.product not returning anything.
>>
>> product = FactoryGirl.create(:product)
>>
>> post :create, {:tshirt =>
>> FactoryGirl.attributes_for(:tshirt).stringify_keys.merge("product_id"=>
>> product.id.to_s) } #successful creation
>> expect(Tshirt.last.product_id).to eq(product.id)  # asserts true
>> puts Tshirt.last.product #prints nothing
>>
>>
Check how product is defined in the tshirt model. Also check the value of
product.id, it may be nil for all we know and tshirt.product_id is also nil
so they're equal.


> expect(Tshirt.last.product.size).to eq(product.size)  # exception!!! it
>> says, product = nil
>>
>>
>>
>> --
>>  Md. Sadaf Noor (@sadaf2605 <https://twitter.com/sadaf2605>)
>>  www.sadafnoor.com
>>
>
>
>
> --
>  Md. Sadaf Noor (@sadaf2605 <https://twitter.com/sadaf2605>)
>  www.sadafnoor.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to rubyonrails-talk+unsubscr...@googlegroups.com
> <javascript:_e(%7B%7D,'cvml','rubyonrails-talk%2bunsubscr...@googlegroups.com');>
> .
> To post to this group, send email to rubyonrails-talk@googlegroups.com
> <javascript:_e(%7B%7D,'cvml','rubyonrails-talk@googlegroups.com');>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/rubyonrails-talk/CAAJ2eVqf%2BfSe7o%3DiA-PE3Sp_Bk23b-eNCiLumYvqB1iPXwiZQQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/rubyonrails-talk/CAAJ2eVqf%2BfSe7o%3DiA-PE3Sp_Bk23b-eNCiLumYvqB1iPXwiZQQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Sent from Gmail mobile

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/CAJ8y7Vf6ryhm6mA94zvPbxZdTuW7xMYUgkTv%2BtNmh0R6qLXQOQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to