Thank you David. That worked. On Tue, Sep 6, 2011 at 3:44 AM, David Chelimsky <[email protected]> wrote: > On Sep 5, 2011, at 11:27 PM, slavix wrote: > >> Here is another example that is failing due to same problem.. >> >> class Currency < ActiveRecord::Base >> end >> >> class Bitcoin < Currency >> include ActiveRecord::Singleton >> default_scope where(:char_code => 'BTC') >> end >> >> >> spec: >> describe Bitcoin do >> .. >> Bitcoin.instance.char_code.should eql('BTC') > > The describe() method creates an example group, and the it() method creates > an example. This ^^ line needs to be in an example: > > describe Bitcoin do > it "defaults to BTC for char_code" do > Bitcoin.instance.char_code.should eq('BTC') > end > end > > re: whether to use eq, eql, or equal, see > http://relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/equality-matchers > > HTH, > David > >> .. >> end >> >> error: >> /home/slava/.rvm/gems/ruby-1.9.2-p290/gems/remarkable-4.0.0.alpha4/lib/ >> remarkable/core/macros.rb:15:in `method_missing': undefined method >> `eql' for #<Class:0xe314990> (NoMethodError) > > _______________________________________________ > rspec-users mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/rspec-users > > -- > You received this message because you are subscribed to the Google Groups > "rspec" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rspec?hl=en. > >
-- You received this message because you are subscribed to the Google Groups "rspec" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rspec?hl=en.
