2014-02-11 79 views
1

我正在關注來自pluralsight.com的Rspec教程。本教程給出了下面的代碼,在截屏的工作原理:Rspec參數的錯誤數量(1代表0)

module Wordpress 
    module Comments 
    class Client 
     def intitialize(url) 

     end 
    end 
    end 
end 

describe Wordpress::Comments::Client do 
    it "stores a URL" do 
    client = Wordpress::Comments::Client.new("http://mashable.com/comments/feed") 
    end 
end  

但是當我運行它,我得到以下錯誤:

Failure/Error: client = Wordpress::Comments::Client.new("http://mashable.com/comments/feed") 
ArgumentError: 
    wrong number of arguments (1 for 0) 

回答

0

看起來像錯字:initialize,不intitialize

+0

哦,耶穌,我覺得自己像一個白癡。我花了一天的時間。 – mikeglaz

+0

拼寫錯誤是最糟糕的,並且很難找到。我感到你的痛苦:) – jklina

0

拼寫錯誤:

module Wordpress 
    module Comments 
    class Client 
     def initialize(url) 
     ...   
     end 
    end 
    end 
end 
相關問題