From 7ec67c1d3194ca7529f865c3138a56ff6c085b8f Mon Sep 17 00:00:00 2001 From: bogdanvlviv Date: Mon, 21 Jan 2019 09:39:30 +0000 Subject: Add Channel tests to `rails stats` Rails generates `test/channels`(#34933) and even allows `rails test:channels` (#34947). `rails stats` has been providing info about `app/channels`, it makes sense to add `test/channels` as well. (I've changed test because we generate `test/channels` with some code) --- railties/lib/rails/tasks/statistics.rake | 1 + 1 file changed, 1 insertion(+) (limited to 'railties/lib/rails/tasks') diff --git a/railties/lib/rails/tasks/statistics.rake b/railties/lib/rails/tasks/statistics.rake index 007a30b6ae..5abba7d3b4 100644 --- a/railties/lib/rails/tasks/statistics.rake +++ b/railties/lib/rails/tasks/statistics.rake @@ -20,6 +20,7 @@ STATS_DIRECTORIES = [ %w(Model\ tests test/models), %w(Mailer\ tests test/mailers), %w(Mailbox\ tests test/mailboxes), + %w(Channel\ tests test/channels), %w(Job\ tests test/jobs), %w(Integration\ tests test/integration), %w(System\ tests test/system), -- cgit v1.2.3