例えばUsers::CommentsController
が担ってるページのSystemTest
はUsers::CommentsTest
にしたい。
でもUsers
ってクラスは無いのでこう書く必要がある。
# tests/system/users/comments_test.rb:
module Users
class CommentsTest < ApplicationSystemTestCase
# ...
end
end
インデントが深くなるのでちょっと嫌。
単数形のUser
だとModelに存在するのでこう書ける。
# tests/system/user/comments_test.rb:
class User::CommentsTest < ApplicationSystemTestCase
# ...
end
といってもこれもたまたまこうなってるだけだから気持ち悪い。