I have an Image model with a :text column named image and am unable to save the image field using FactoryGirl.
Here are the relevant piece of code:
image_spec.rb:
let(:image) { FactoryGirl.create(:image) }
subject { image }
it { should be_valid }
factories.rb:
factory :image do
image "123456789.jpg"
end
image.rb:
attr_accessible :image
validates :image, presence: true
When I run the tests I get the error
Failure/Error: let(:image) { FactoryGirl.create(:image) }
ActiveRecord::RecordInvalid:
Validation failed: Image can't be blank
for all three of the lines in the image_spec.rb above.
I've tried applying How to initialize a column named 'sequence' with FactoryGirl but I couldn't get it working. (FactoryGirl creations for my other models work fine)
How do I assign to columns that have the same name as their table?
