我应该如何在minitest rails3.2之前加入?

问题描述 投票:0回答:1

在minitest中写之前的写法是什么?

我试图在rails3.2中使用minitest编写测试用例。

在开发环境中,我们使用一些后台作业加载此数据。所以,我也尝试在测试环境中做同样的事情。在运行我的测试套件之前,我必须在后台运行任务并生成活力数据,并在测试套件中使用相同的断言。但是,它为CommunityVibrancyTest抛出未定义的方法`之前':Class(NoMethodError)

   require 'test_helper'

   Class CommunityVibrancyTest < ActiveSupport::TestCase

     before :each do
       App::Queue.add(CommunityVibrancyWorker, communities(:private_community).id )
     end

     test 'to check whether the vibrancy of a private community is handliing share or not' do

       private_community = communities(:private_community)
       share = shares(:share_for_private_microblog)
       stat = share.object
       post_vibrancy = stat.aggregated_score_mblog.round(1)
       assert_equal post_vibrancy, private_community.community_vibrancies.last.post_vibrancy
     end
   end

test / unit / community_vibrancy_test.rb:24:in<class:CommunityVibrancyTest>': undefined methodbefore'for CommunityVibrancyTest:Class(NoMethodError)from test / unit / community_vibrancy_test.rb:4:in`

ruby-on-rails unit-testing ruby-on-rails-3 minitest
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.