Re: [rspec-users] Simular to Include

2013-02-27 Thread Ervin Weber
Misunderstood examples.
Array1.collect{|s| s.split ('/').last}.should == array2 seems closer to
your intent.
___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Simular to Include

2013-02-27 Thread Ervin Weber
(Array1 - array2).should be_blank maybe?
On 28 Feb 2013 07:42, Mattias A. li...@ruby-forum.com wrote:

 Hi,

 I have array1 that contains several web address. Array2 contains the
 expected endings of array1 values. How can I control that arrays2 values
 is in array1?

 I have tried array1.should include array2, but it requires that array1
 and array2 is identical.


 array1 = [https:///page.html, https:///page1.html,
 https:///page3.html]

 array2 = [page.html, page2.html, page3.html, page4.html]

 A big thanks in advance!

 Regards
 Mattias

 --
 Posted via http://www.ruby-forum.com/.
 ___
 rspec-users mailing list
 rspec-users@rubyforge.org
 http://rubyforge.org/mailman/listinfo/rspec-users

___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Simular to Include

2013-02-27 Thread reza . primardiansyah
It appears to duplicate implementation. Perhaps this can do:
array2.each do |s2| 
  array1.should be_any do |s1|
s1.include s2
  end 
end

Or use zip instead

Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...!

-Original Message-
From: Ervin Weber weber...@gmail.com
Sender: rspec-users-boun...@rubyforge.org
Date: Thu, 28 Feb 2013 08:35:36 
To: rspec-usersrspec-users@rubyforge.org
Reply-To: rspec-users rspec-users@rubyforge.org
Subject: Re: [rspec-users] Simular to Include

___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users
___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users