assigns
中是否有rspec MiniTest::Test
等效?如果不是,我如何检查测试中的即时控制器即时变量。我正在使用sinatra
答案 0 :(得分:1)
assigns
方法来自Rails,而不是RSpec或Minitest。它的工作原理相同。
以下示例来自Rails Testing Guide:
class PostsControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:posts)
end
end