提交 fa8d35b4 编写于 作者: G Greg Molnar

change 'assert !' to 'assert_not' in guides [ci skip]

上级 25ce856c
......@@ -248,7 +248,7 @@ To see how a test failure is reported, you can add a failing test to the `post_t
```ruby
test "should not save post without title" do
post = Post.new
assert !post.save
assert_not post.save
end
```
......@@ -272,7 +272,7 @@ In the output, `F` denotes a failure. You can see the corresponding trace shown
```ruby
test "should not save post without title" do
post = Post.new
assert !post.save, "Saved the post without a title"
assert_not post.save, "Saved the post without a title"
end
```
......@@ -943,7 +943,7 @@ class UserMailerTest < ActionMailer::TestCase
# Send the email, then test that it got queued
email = UserMailer.create_invite('me@example.com',
'friend@example.com', Time.now).deliver
assert !ActionMailer::Base.deliveries.empty?
assert_not ActionMailer::Base.deliveries.empty?
# Test the body of the sent email contains what we expect it to
assert_equal ['me@example.com'], email.from
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册