Hey all,
I would like to ask your opinion on the naming conventions I just introduced in some tests.
If you look at r3788, you’ll see the new names in PartiesControllerTest
module PartiesControllerTest class UserWithEditPartyPermissionCan < T::U::TC def test_update_own_account ... end end end
class UserWithEditOwnAccountPermissionOnlyCan < T::U::TC
def test_not_update_other_party
...
end
end
I think these naming conventions are good for functional tests. For unit and integration tests, I don’t know if they are so perfect.
When I write more unit tests, I’ll see if they are.
Thoughts ?
—François