Sha256: 9614c5ec2a8beffd3ba2172c042b576a5babab56ddc94148d6dc9d7c1027c3c6
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
When /^I post some data to yahoo$/ do @url = URI.parse('http://search.yahooapis.com/ContentAnalysisService/V1/termExtraction') appid = LICENSE_ID = YAML::load_file('config/keys.yml')['yahoo'] context = URI.encode('Italian sculptors and painters of the renaissance favored the Virgin Mary for inspiration') post_args = { 'appid' => appid, 'context' => context, 'output' => 'json' } @response = Jkl::post_to @url, post_args end When /^I request some RSS$/ do keyphrase = @keyphrase || "iraq" url = "#{YAML::load_file('config/config.yml')['topix']}#{CGI::escape(keyphrase)}" @response = Jkl::get_xml_from url end Given /^I have some RSS$/ do raw = File.open('features/mocks/topix_rss.xml','r') {|f| f.readlines.to_s} @response = Hpricot.XML raw end When /^I make a restful get request$/ do url = "http://news.bbc.co.uk/1/hi/uk_politics/7677419.stm" @response = Jkl::get_from url end When /^I request some trends$/ do twitter_json_url = YAML::load_file('config/config.yml')['twitter'] output = JSON.parse Jkl::get_from twitter_json_url @response = output['trends'] end Then /^I should get a response$/ do @response.should_not == nil #puts @response.inspect end Then /^I should receive some headlines$/ do @items = Jkl::Rss::items @response @links = [] @items.each do |item| @links << Jkl::Rss::attribute_from(item, :link) end @links.should_not == nil @links.length.should > 0 end Then /^I should be able to get the copy from the first headline$/ do @response = Jkl::get_from @links[0] @response.should_not be_nil @response.should_not == "" @text = Jkl::sanitize @response end Then /^I should see some text$/ do @response.length.should > 0 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jakal-0.1.1 | features/step_definitions/http_steps.rb |