aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-21 13:12:24 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-21 13:12:24 -0200
commit01c1667b977be4794fe0cf5f2d2b0289a32f4825 (patch)
tree33d746bc05efe510ac33f8be6e52ccba948d79ea /guides/source/testing.md
parent51b3edd00c7f5fd7db39566d5f0785098f97a367 (diff)
downloadrails-01c1667b977be4794fe0cf5f2d2b0289a32f4825.tar.gz
rails-01c1667b977be4794fe0cf5f2d2b0289a32f4825.tar.bz2
rails-01c1667b977be4794fe0cf5f2d2b0289a32f4825.zip
Fix test case class in the testing guide [ci skip]
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 94cfcf12b7..fa55c09c64 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -1201,7 +1201,7 @@ within a model:
```ruby
require 'test_helper'
-class ProductTest < ActiveSupport::TestCase
+class ProductTest < ActiveJob::TestCase
test 'billing job scheduling' do
assert_enqueued_with(job: BillingJob) do
product.charge(account)