I have carrierwave setup. Its working without any issues. Now, below are the deal_images fixtures:
d1_image1:
image: app_images/img1.png
usage_tag: thumbnail
deal: first_deal
d1_image2:
image: app_images/img2.png
usage_tag: thumbnail
deal: second_deal
Now, what it does is just enter string in image and image.url is not pointing anywhere. I want to use image in app_image/img1.png to be uploaded when i run rake db:fixtures:load
into uploads directory.
Is this correct way of doing it?