> BTW, "my" order seems more natural to mee also because long expressions:
> assert_equal some/very*long.calculations(Of::My.value), 'blah'
> vs.
> assert_equal 'blah', some/very*long.calculations(Of::My.value)

Wrong example :) I meant the opposite:

[Some very long calculation of x]
assert_equal x, %w(one two three four five) #my way
vs.
[Some very long calculation of x]
assert_equal %w(one two three four five), x #common way

sorry :)

victor.