Verify Order

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
tasks so that the task with position = 1 comes before the task with
position = 2.

Little push would be great, thanks

Frank

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.should == [@first_task, @last_task]
end
end

Will check that they are ordered.

Cheers,
-foca