require 'spec' require 'hpricot' require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper") describe GoogleCustomSearch::SearchResult do RESULTS_XML = < 0.129014Wicked Cultural District Search Engine 33 /custom?q=Wicked&hl=en&safe=off&client=google-csbe&cx=004905679161489350096:rymp5afccji&boostcse=0&site=culturaldistrict.org&output=xml_no_dtd&ie=UTF-8&oe=UTF-8&ei=wFH_TdLGI8fKgQfGpMXwCg&start=10&sa=N http://pgharts.culturaldistrict.org/production/26485http://pgharts.culturaldistrict.org/production/26485<b>Wicked</b> Pittsburgh Benedum Center Tickets0<b>Wicked</b> Pittsburgh Benedum Center Tickets Entertainment Weekly calls <b>WICKED</b> &quot;the <br> best musical of the decade,” and when it first played Pittsburgh in 2006, <b>...</b>en http://pgharts.culturaldistrict.org/production/26485/wicked?cid=CT_05122011_FB_Wicked_WickedPresalehttp://pgharts.culturaldistrict.org/production/26485/wicked%3Fcid%3DCT_05122011_FB_Wicked_WickedPresale<b>Wicked</b> Pittsburgh Benedum Center Tickets01305231821May 12, 2011 <b>...</b> <b>Wicked</b> Pittsburgh Benedum Center Tickets Entertainment Weekly calls <b>WICKED</b> &quot;the <br> best musical of the decade,” and when it first played <b>...</b>en http://www.culturaldistrict.org/tickets/tickets/reserve.aspx?performanceNumber=24471http://www.culturaldistrict.org/tickets/tickets/reserve.aspx%3FperformanceNumber%3D24471Idina Menzel Pittsburgh Heinz Hall Tickets0Broadway powerhouse Idina Menzel – the Tony award-winning &quot;Elphaba&quot; from <br> international blockbuster <b>Wicked</b> – performs for one-night-only at Heinz Hall <br> with <b>...</b>en http://pgharts.culturaldistrict.org/calendar/daily/2011/10/1http://pgharts.culturaldistrict.org/calendar/daily/2011/10/1The Pittsburgh Cultural Trust: Event Calendar: Saturday October 01 <b>...</b>0<b>Wicked</b>. 2:00 PM. Presented By: PNC Broadway Across America - Pittsburgh | Venue: <br> Benedum Center. The untold story of the witches of Oz <b>...</b>en http://pgharts.culturaldistrict.org/pct_home/subscriptions/pnc-broadway-subscriber-benefits/http://pgharts.culturaldistrict.org/pct_home/subscriptions/pnc-broadway-subscriber-benefits/PNC Broadway Subscriber Benefits0You&#39;ll also be able to swap out of a subscription series show into a special as <br> they are announced (excludes <b>Wicked</b>.) You can swap your tickets out of only <b>...</b>en http://pgharts.culturaldistrict.org/uploads/File/PCT%20Group%20Sales/Broadway/bwy_WICKED_groupsales.pdfhttp://pgharts.culturaldistrict.org/uploads/File/PCT%2520Group%2520Sales/Broadway/bwy_WICKED_groupsales.pdfSeptember 7-October 2, 2011 • Benedum Center0Visit <b>wicked</b>.pgharts.org for information. $4 per order handling fee is added to <br> final purchase. prices, dates and times are subject to change without notice <b>...</b>en http://www.culturaldistrict.org/calendar/daily/2011/9/11http://www.culturaldistrict.org/calendar/daily/2011/9/11CulturalDistrict.org: Event Calendar: Sunday September 11, 20110<b>Wicked</b>. 1:00 PM. Presented By: PNC Broadway Across America - Pittsburgh | Venue: <br> Benedum Center. The untold story of the witches of Oz <b>...</b>en http://www.culturaldistrict.org/calendar/daily/2011/9/8http://www.culturaldistrict.org/calendar/daily/2011/9/8CulturalDistrict.org: Event Calendar: Thursday September 08, 20110<b>Wicked</b>. 2:00 PM. Presented By: PNC Broadway Across America - Pittsburgh | Venue: <br> Benedum Center. The untold story of the witches of Oz <b>...</b>en http://www.culturaldistrict.org/calendar/daily/2011/9/24http://www.culturaldistrict.org/calendar/daily/2011/9/24CulturalDistrict.org: Event Calendar: Saturday September 24, 20110<b>Wicked</b>. 2:00 PM. Presented By: PNC Broadway Across America - Pittsburgh | Venue: <br> Benedum Center. The untold story of the witches of Oz <b>...</b>en http://www.culturaldistrict.org/calendar/daily/2011/9/30http://www.culturaldistrict.org/calendar/daily/2011/9/30CulturalDistrict.org: Event Calendar: Friday September 30, 20110<b>Wicked</b>. 8:00 PM. Presented By: PNC Broadway Across America - Pittsburgh | Venue: <br> Benedum Center. The untold story of the witches of Oz <b>...</b>en xml RESULTS_XML_NO_RESULTS = < 0.166453 ffffggggg ffggggg xml it "should find the estimated count from the given search result json data" do result = GoogleCustomSearch::SearchResult.new Hpricot(RESULTS_XML) result.estimated_count.should == 33 end it "should return the range of results" do result = GoogleCustomSearch::SearchResult.new Hpricot(RESULTS_XML) result.range.should == (1..10) end describe "items" do it "should return the search result items" do result = GoogleCustomSearch::SearchResult.new Hpricot(RESULTS_XML) result.items.size.should == 10 end it "should return the title of search item" do result = GoogleCustomSearch::SearchResult.new Hpricot(RESULTS_XML) result.items.first.title.should == "Wicked Pittsburgh Benedum Center Tickets" end end end