Displaying 5 results from an estimated 5 matches for "simple_matcher".
2004 Jun 30
1
Developing functions
Without trying to understand your code in detail let me just
assume you are trying to create a matrix, ret, whose i,j-th
entry is some function, f, of row i of X and row j of X.
In that case this should do it:
apply(X,1,function(x)apply(X,1,function(y)f(x,y)))
Date: Wed, 30 Jun 2004 15:28:47 -0300 (ART)
From: <daniel at sintesys.com.ar>
To: <r-help at stat.math.ethz.ch>
2008 Nov 04
18
Can I do foo.should (be_nil || be_empty) in rspec
Is there any way to do
foo.should (be_nil || be_empty)
in rspec.
Thanks in advance
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20081104/ee43c9c9/attachment.html>
2008 Jun 07
3
Match render :nothing
Hello guys,
Is there any way to match a render :nothing?
I coudn''t find any way to do this so i''ve just changed my controllers
to do a "head :ok", but it would be nice to know if there is any other
way :)
--
Maur?cio Linhares
http://alinhavado.wordpress.com/ (pt-br) | http://blog.codevader.com/ (en)
Jo?o Pessoa, PB, +55 83 8867-7208
2004 Jun 29
4
camberra distance?
Hi!
Its not an R specific question but had no idea where to ask elsewhere.
Does anyone know the orginal reference to the CAMBERA DISTANCE?
Eryk.
Ps.:
I knew that its an out of topic question (sorry).
Can anyone reccomend a mailing list where such questions are in topic?
2010 Oct 03
2
rspec-1.3.1.rc and rspec-rails-1.3.3.rc are released!
...Tweaker no longer eats all paths with ''lib''
(Tim Harper - #912)
* Fix delegation of stubbed values on superclass class-level methods.
(Scott Taylor - #496 - #957)
* Fix pending to work with ruby-1.9
* deprecations
* share_as (will be removed from rspec-core-2.0)
* simple_matcher (will be removed from rspec-core-2.0)
===================================================================
rspec-rails-1.3.3 (rc)
* enhancements
* replace use of ''returning'' with ''tap'' (to quite rails-2.3.9 deprecation warnings)
* bug fixes
* support messag...