aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2019-01-21 09:39:30 +0000
committerbogdanvlviv <bogdanvlviv@gmail.com>2019-01-21 10:45:08 +0000
commit7ec67c1d3194ca7529f865c3138a56ff6c085b8f (patch)
tree8005e78963dd2da2cad7e700874e0563b84a57ce /railties/lib/rails/tasks
parent9f0953d320bbc06a77596a93b6fdbcbf315cb06a (diff)
downloadrails-7ec67c1d3194ca7529f865c3138a56ff6c085b8f.tar.gz
rails-7ec67c1d3194ca7529f865c3138a56ff6c085b8f.tar.bz2
rails-7ec67c1d3194ca7529f865c3138a56ff6c085b8f.zip
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)
Diffstat (limited to 'railties/lib/rails/tasks')
-rw-r--r--railties/lib/rails/tasks/statistics.rake1
1 files changed, 1 insertions, 0 deletions
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),