mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #28100 from fernandes/patch-1
[doc] Fix wrong class name in testing.md
This commit is contained in:
commit
40b926d5b6
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ Now let's open that file and write our first assertion:
|
||||||
```ruby
|
```ruby
|
||||||
require "application_system_test_case"
|
require "application_system_test_case"
|
||||||
|
|
||||||
class UsersTest < ApplicationSystemTestCase
|
class ArticlesTest < ApplicationSystemTestCase
|
||||||
test "viewing the index" do
|
test "viewing the index" do
|
||||||
visit articles_path
|
visit articles_path
|
||||||
assert_selector "h1", text: "Articles"
|
assert_selector "h1", text: "Articles"
|
||||||
|
|
Loading…
Reference in a new issue