test/helper.rb in gowalla-0.3.0 vs test/helper.rb in gowalla-0.4.0
- old
+ new
@@ -1,14 +1,10 @@
-require 'test/unit'
-require 'pathname'
require 'rubygems'
-
-
+require 'test/unit'
require 'shoulda'
require 'matchy'
require 'fakeweb'
-
begin require 'redgreen'; rescue LoadError; end
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'gowalla'
@@ -16,10 +12,14 @@
FakeWeb.allow_net_connect = false
class Test::Unit::TestCase
end
+def gowalla_test_client
+ Gowalla::Client.new(:username => 'pengwynn', :password => '0U812', :api_key => 'gowallawallabingbang')
+end
+
def fixture_file(filename)
return '' if filename == ''
file_path = File.expand_path(File.dirname(__FILE__) + '/fixtures/' + filename)
File.read(file_path)
end
@@ -28,10 +28,10 @@
url =~ /^http/ ? url : "http://api.gowalla.com#{url}"
end
def stub_get(url, filename, options={})
opts = {:body => fixture_file(filename)}.merge(options)
-
+
FakeWeb.register_uri(:get, gowalla_url(url), opts)
end
def stub_post(url, filename)
FakeWeb.register_uri(:post, gowalla_url(url), :body => fixture_file(filename))