Assuming Project.tasks has :order => 'position ASC' then:
describe Project do
before do
@project = Project.create
@first_task = @project.tasks.create(:position => 1)
@last_task = @project.tasks.create(:position => 2)
end
it "returns its tasks in order" do
@project.tasks.shou
I may be missing something obvious, but how do I verify sort order?
I have
class Project < ActiveRecord::Base
has_many :tasks, :order => "position"
end
I create a project, and 2 tasks: one with position = 1 and the other
with position = 2. I want to verify that Project.tasks orders the
t