hungryblank-aws_sdb_bare 0.1.1 → 0.1.2
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.
- data/VERSION.yml +1 -1
- data/lib/aws_sdb_bare/response.rb +1 -1
- data/test/aws_sdb_response_test.rb +10 -0
- metadata +2 -2
data/VERSION.yml
CHANGED
@@ -71,6 +71,16 @@ class AwsSdbRequestTest < Test::Unit::TestCase
|
|
71
71
|
|
72
72
|
end
|
73
73
|
|
74
|
+
context "parsing a request" do
|
75
|
+
|
76
|
+
should "return the metadata" do
|
77
|
+
response = Response.parse(SAMPLE_RESPONSES['ListDomains'])
|
78
|
+
assert_equal '0.0000071759', response.metadata.box_usage
|
79
|
+
end
|
80
|
+
%w(ListDomains DomainMetadata)
|
81
|
+
|
82
|
+
end
|
83
|
+
|
74
84
|
context "parsing DomainMetadata" do
|
75
85
|
|
76
86
|
should "provide direct acceess to attributes" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hungryblank-aws_sdb_bare
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paolo Negri
|
@@ -62,6 +62,6 @@ rubyforge_project:
|
|
62
62
|
rubygems_version: 1.2.0
|
63
63
|
signing_key:
|
64
64
|
specification_version: 3
|
65
|
-
summary:
|
65
|
+
summary: gem wrapping the Amazon AWS SimpleDB api, xml parsing via nokogiri OR hpricot, you chose your http lib!
|
66
66
|
test_files: []
|
67
67
|
|