Sha256: 1fcbd46ac3cadbe0198c292d35c2aeec57748b9d3968774e33b266a922fc10f6
Contents?: true
Size: 1.37 KB
Versions: 13
Compression:
Stored size: 1.37 KB
Contents
require 'helper' class TestSpecials < Test::Unit::TestCase context "When using the foursquare API and working with specials" do setup do @client = foursquare_test_client end should "fetch info for a single special" do stub_get("https://api.foursquare.com/v2/specials/4bd876f886ba62b58a6e88b3?oauth_token=#{@client.oauth_token}", "specials/special.json") special = @client.special('4bd876f886ba62b58a6e88b3') special.message.should == "$10 off for the mayor!" end should "fetch results when searching for nearby specials" do stub_get("https://api.foursquare.com/v2/specials/search?ll=40.7%2C-73.9&oauth_token=#{@client.oauth_token}", "specials/search_specials.json") specials = @client.search_specials(:ll => '40.7,-73.9') specials.count.should == 1 specials.first.message.should == "Buy 1 Get 1 40% Off All Video Games (priced up to $19.99)\r\n\r\nItems must be of equal or lesser value to the lowest priced item purchased\r\n\r\nEnds 2/12/2011" end should "add a special for a venue with given params" do stub_post("https://api.foursquare.com/v2/specials/add?text=Test&unlockedText=Congrats&oauth_token=#{@client.oauth_token}", "specials/special_created.json") special = @client.add_special(:text => 'Test', :unlockedText => 'Congrats') special.message.should == "Test" end end end
Version data entries
13 entries across 13 versions & 1 rubygems