aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/assertions/response_assertions_test.rb
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2013-12-18 19:22:30 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2013-12-18 19:22:30 -0800
commite63748cd3705896401ebac6e9f35bb9934d0547e (patch)
treef3fab34129963f1e16175dc71b97c6c10a986d50 /actionpack/test/assertions/response_assertions_test.rb
parentc454fc29a89e2e67ffc94de72062a189aed49b53 (diff)
parent7bae2921ec51335ec87fde1980a1b568ce37fc1c (diff)
downloadrails-e63748cd3705896401ebac6e9f35bb9934d0547e.tar.gz
rails-e63748cd3705896401ebac6e9f35bb9934d0547e.tar.bz2
rails-e63748cd3705896401ebac6e9f35bb9934d0547e.zip
Merge pull request #13366 from vipulnsward/minitest-namespace-change
Change all `MiniTest` to `Minitest`
Diffstat (limited to 'actionpack/test/assertions/response_assertions_test.rb')
-rw-r--r--actionpack/test/assertions/response_assertions_test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/test/assertions/response_assertions_test.rb b/actionpack/test/assertions/response_assertions_test.rb
index 8eec98e916..5e64cae7e2 100644
--- a/actionpack/test/assertions/response_assertions_test.rb
+++ b/actionpack/test/assertions/response_assertions_test.rb
@@ -19,7 +19,7 @@ module ActionDispatch
@response = FakeResponse.new sym
assert_response sym
- assert_raises(MiniTest::Assertion) {
+ assert_raises(Minitest::Assertion) {
assert_response :unauthorized
}
end
@@ -29,11 +29,11 @@ module ActionDispatch
@response = FakeResponse.new 400
assert_response 400
- assert_raises(MiniTest::Assertion) {
+ assert_raises(Minitest::Assertion) {
assert_response :unauthorized
}
- assert_raises(MiniTest::Assertion) {
+ assert_raises(Minitest::Assertion) {
assert_response 500
}
end
@@ -42,11 +42,11 @@ module ActionDispatch
@response = FakeResponse.new 401
assert_response :unauthorized
- assert_raises(MiniTest::Assertion) {
+ assert_raises(Minitest::Assertion) {
assert_response :ok
}
- assert_raises(MiniTest::Assertion) {
+ assert_raises(Minitest::Assertion) {
assert_response :success
}
end