Displaying 1 result from an estimated 1 matches for "category_audio".
2011 Nov 18
1
What does :count actually mean in assert_select?
...categories.rb
======================
FactoryGirl.define do
factory :category_intakes, :class => ''category'' do
name ''intakes and filters''
description ''airfilters and etc.''
created_by 1
updated_by 1
end
factory :category_audio, :class => ''category'' do
name ''audio''
description ''in car entertainment''
created_by 1
updated_by 1
end
end
spec/views/categories/index.html.erb
=============================
require ''spec_helper''...