1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add rails test:channels.

Add this rake task to test channels only.
We've added `rails test:mailboxes` recently in the same way #34828.
This commit is contained in:
bogdanvlviv 2019-01-16 15:28:13 +00:00
parent a43052cbbc
commit d7097cf5e0
No known key found for this signature in database
GPG key ID: E4ACD76A6DB6DFDD
3 changed files with 18 additions and 3 deletions

View file

@ -1,3 +1,7 @@
* Add `rails test:channels`.
*bogdanvlviv*
* Use original `bundler` environment variables during the process of generating a new rails project.
*Marco Costa*

View file

@ -28,7 +28,7 @@ namespace :test do
desc "Run tests quickly, but also reset db"
task db: %w[db:test:prepare test]
["models", "helpers", "controllers", "mailers", "integration", "jobs", "mailboxes"].each do |name|
["models", "helpers", "channels", "controllers", "mailers", "integration", "jobs", "mailboxes"].each do |name|
task name => "test:prepare" do
$: << "test"
Rails::TestUnit::Runner.rake_run(["test/#{name}"])

View file

@ -98,6 +98,17 @@ module ApplicationTests
end
end
def test_run_channels
create_test_file :channels, "foo_channel"
create_test_file :channels, "bar_channel"
rails("test:channels").tap do |output|
assert_match "FooChannelTest", output
assert_match "BarChannelTest", output
assert_match "2 runs, 2 assertions, 0 failures", output
end
end
def test_run_controllers
create_test_file :controllers, "foo_controller"
create_test_file :controllers, "bar_controller"
@ -167,11 +178,11 @@ module ApplicationTests
end
def test_run_all_suites
suites = [:models, :helpers, :unit, :controllers, :mailers, :functional, :integration, :jobs, :mailboxes]
suites = [:models, :helpers, :unit, :channels, :controllers, :mailers, :functional, :integration, :jobs, :mailboxes]
suites.each { |suite| create_test_file suite, "foo_#{suite}" }
run_test_command("") .tap do |output|
suites.each { |suite| assert_match "Foo#{suite.to_s.camelize}Test", output }
assert_match "9 runs, 9 assertions, 0 failures", output
assert_match "10 runs, 10 assertions, 0 failures", output
end
end