RSPEC正在查找我的文件,但不是我的例子

时间:2015-04-08 00:09:25

标签: ruby-on-rails testing rspec

所以我在我的文件中放了一个“hello world”以确保我找到了该文件,果然,它打印出来了。但是,我的例子都没有运行。它说“没有找到例子”。有什么想法吗?

require 'rails_helper'

class PostsControllerTest < ActionController::TestCase

  print "hello world"

  setup do
    @post = posts(:one)
  end

  test "should get index" do
    get :index
    assert_response :success
    assert_not_nil assigns(:posts)
  end

  test "should get new" do
    get :new
    assert_response :success
  end

  test "should create post" do
    assert_difference('Post.count') do
      post :create, post: { body: @post.body, title: @post.title }
    end

    assert_redirected_to post_path(assigns(:post))
  end

  test "should show post" do
    get :show, id: @post
    assert_response :success
  end

  test "should get edit" do
    get :edit, id: @post
    assert_response :success
  end

  test "should update post" do
    patch :update, id: @post, post: { body: @post.body, title: @post.title }
    assert_redirected_to post_path(assigns(:post))
  end

  test "should destroy post" do
    assert_difference('Post.count', -1) do
      delete :destroy, id: @post
    end

    assert_redirected_to posts_path
  end
end

如果有更多代码可以提供帮助,请与我们联系。感谢。

1 个答案:

答案 0 :(得分:1)

那不是rspec,那个测试单元,你没有用rspec运行它,你用rake test运行它