mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
Had an issue with calling render_views in the specs to render the jbuilder json templates and also getting the devise sign_in method to work, ended up adding a helper to add the username/password for a user
8 lines
159 B
Ruby
8 lines
159 B
Ruby
FactoryGirl.define do
|
|
factory :task do
|
|
task_list { FactoryGirl.create(:task_list) }
|
|
done false
|
|
task { Faker::Lorem.words(7).join(" ")}
|
|
end
|
|
end
|