2015-06-02 63 views
0

其實我試圖解決這個問題:Rubocop RSpec的描述是失敗

不要使用多個頂級介紹 - 嘗試巢他們。

描述的第一個參數應該是被測試的類或模塊。

我有這種格式的測試計劃八:

describe 'PublicanCreatorsCreate.init_docu_work' do 
    it 'accesses a directory and creates there an initial documentation' do 
    PublicanCreatorsCreate.init_docu_work(title, type, language, brand, db5) 
    Dir.exist?(title) 
    :should == true 
    end 
end 

但是,什麼是假的?第一個參數包含測試的類和方法。

回答

1

通常這樣一個描述了將被寫爲:

describe PublicanCreatorsCreate, '.init_docu_work' do 

describe PublicanCreatorsCreate do 
    describe '.init_docu_work' do 

聽起來rubocop-rspec期待第二形式。

+0

非常感謝。 –