From 9250899215feb8c6e43efec8416cff6482018691 Mon Sep 17 00:00:00 2001 From: muryoimpl Date: Fri, 17 Dec 2021 22:50:38 +0900 Subject: [PATCH] Fix broken table in YARD doc Remove extra blank in README.md. --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 3e4c0f2e7..e5c0e135d 100644 --- a/README.md +++ b/README.md @@ -233,18 +233,18 @@ Each one inherits from one of Rails’ built-in `TestCase` classes, meaning the helper methods provided by default in Rails tests are available in RSpec, as well. - | Spec type | Corresponding Rails test class | - | -------------- | -------------------------------- | - | [model][] | | - | [controller][] | [`ActionController::TestCase`][] | - | [mailer][] | `ActionMailer::TestCase` | - | [job][] | | - | [view][] | `ActionView::TestCase` | - | [routing][] | | - | [helper][] | `ActionView::TestCase` | - | [request][] | [`ActionDispatch::IntegrationTest`][] | - | [feature][] | | - | [system][] | [`ActionDispatch::SystemTestCase`][] | +| Spec type | Corresponding Rails test class | +| -------------- | -------------------------------- | +| [model][] | | +| [controller][] | [`ActionController::TestCase`][] | +| [mailer][] | `ActionMailer::TestCase` | +| [job][] | | +| [view][] | `ActionView::TestCase` | +| [routing][] | | +| [helper][] | `ActionView::TestCase` | +| [request][] | [`ActionDispatch::IntegrationTest`][] | +| [feature][] | | +| [system][] | [`ActionDispatch::SystemTestCase`][] | Follow the links above to see examples of each spec type, or for official Rails API documentation on the given `TestCase` class.