markauskas-googlebase 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,35 +0,0 @@
1
- require File.dirname(__FILE__) + '/test_helper.rb'
2
-
3
- # I am fully aware these are lacking. Haven't had the time to figure out best way to test this since it is in essence a hack.
4
-
5
- class TestGooglebase < Test::Unit::TestCase
6
-
7
- def setup
8
- end
9
-
10
- def test_should_make_http_get_request
11
- html = Google::Base.get('http://www.google.com/reader/user-info')
12
- assert html =~ /webgroup@nd\.edu/
13
- end
14
-
15
- def test_should_make_https_get_request
16
- html = Google::Base.get('https://www.google.com:443/analytics/home/')
17
- assert html =~ /webgroup\.nd\.edu/
18
- end
19
-
20
- def test_should_make_http_post_request
21
-
22
- end
23
-
24
- def test_should_make_https_post_request
25
-
26
- end
27
-
28
- def test_should_make_http_post_request_with_raw_data
29
-
30
- end
31
-
32
- def test_should_make_https_post_request_with_raw_data
33
-
34
- end
35
- end