fog 0.4.1 → 0.5.0

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.
Files changed (59) hide show
  1. data/Gemfile.lock +3 -6
  2. data/fog.gemspec +3 -3
  3. data/lib/fog.rb +1 -1
  4. data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +24 -0
  5. data/lib/fog/aws/parsers/ses/get_send_quota.rb +26 -0
  6. data/lib/fog/aws/parsers/ses/get_send_statistics.rb +29 -0
  7. data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +25 -0
  8. data/lib/fog/aws/parsers/ses/send_email.rb +26 -0
  9. data/lib/fog/aws/parsers/ses/send_raw_email.rb +26 -0
  10. data/lib/fog/aws/parsers/ses/verify_email_address.rb +24 -0
  11. data/lib/fog/aws/requests/elb/create_load_balancer.rb +1 -1
  12. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +37 -0
  13. data/lib/fog/aws/requests/ses/get_send_quota.rb +40 -0
  14. data/lib/fog/aws/requests/ses/get_send_statistics.rb +43 -0
  15. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +37 -0
  16. data/lib/fog/aws/requests/ses/send_email.rb +82 -0
  17. data/lib/fog/aws/requests/ses/send_raw_email.rb +50 -0
  18. data/lib/fog/aws/requests/ses/verify_email_address.rb +37 -0
  19. data/lib/fog/aws/ses.rb +106 -0
  20. data/lib/fog/bin/aws.rb +5 -1
  21. data/lib/fog/cdn.rb +1 -1
  22. data/lib/fog/compute/aws.rb +1 -0
  23. data/lib/fog/compute/models/aws/server.rb +5 -2
  24. data/lib/fog/compute/models/bluebox/server.rb +5 -2
  25. data/lib/fog/compute/models/go_grid/images.rb +1 -1
  26. data/lib/fog/compute/models/go_grid/server.rb +55 -8
  27. data/lib/fog/compute/models/go_grid/servers.rb +2 -2
  28. data/lib/fog/compute/models/rackspace/server.rb +5 -2
  29. data/lib/fog/compute/models/slicehost/server.rb +5 -2
  30. data/lib/fog/compute/parsers/aws/describe_reserved_instances_offerings.rb +34 -0
  31. data/lib/fog/compute/rackspace.rb +28 -7
  32. data/lib/fog/compute/requests/aws/describe_images.rb +48 -1
  33. data/lib/fog/compute/requests/aws/describe_reserved_instances_offerings.rb +45 -0
  34. data/lib/fog/compute/requests/go_grid/grid_server_add.rb +2 -2
  35. data/lib/fog/core/ssh.rb +7 -3
  36. data/lib/fog/dns.rb +1 -1
  37. data/lib/fog/dns/requests/aws/create_hosted_zone.rb +8 -8
  38. data/lib/fog/providers/aws.rb +1 -0
  39. data/lib/fog/storage/aws.rb +49 -30
  40. data/lib/fog/storage/google.rb +48 -29
  41. data/lib/fog/storage/local.rb +2 -0
  42. data/lib/fog/storage/models/aws/file.rb +1 -1
  43. data/lib/fog/storage/models/google/file.rb +1 -1
  44. data/lib/fog/storage/models/local/file.rb +9 -1
  45. data/lib/fog/storage/requests/aws/put_bucket.rb +6 -6
  46. data/lib/fog/storage/requests/aws/put_object.rb +7 -7
  47. data/lib/fog/storage/requests/google/put_bucket.rb +5 -6
  48. data/lib/fog/storage/requests/google/put_object.rb +7 -7
  49. data/lib/fog/storage/requests/rackspace/get_container.rb +1 -0
  50. data/lib/fog/storage/requests/rackspace/get_containers.rb +1 -0
  51. data/tests/aws/requests/ses/helper.rb +15 -0
  52. data/tests/aws/requests/ses/verified_email_address_tests.rb +27 -0
  53. data/tests/compute/requests/terremark_ecloud/catalog_tests.rb +1 -1
  54. data/tests/compute/requests/terremark_ecloud/network_tests.rb +1 -1
  55. data/tests/compute/requests/terremark_ecloud/organization_tests.rb +1 -1
  56. data/tests/compute/requests/terremark_ecloud/vdc_tests.rb +1 -1
  57. data/tests/helper.rb +4 -36
  58. data/tests/helpers/mock_helper.rb +33 -0
  59. metadata +32 -9
@@ -28,6 +28,7 @@ module Fog
28
28
  def initialize(options={})
29
29
  Fog::Mock.not_implemented
30
30
 
31
+ require 'mime/types'
31
32
  unless options.delete(:provider)
32
33
  location = caller.first
33
34
  warning = "[yellow][WARN] Fog::Local::Storage.new is deprecated, use Fog::Storage.new(:provider => 'Local') instead[/]"
@@ -58,6 +59,7 @@ module Fog
58
59
  Formatador.display_line(warning)
59
60
  end
60
61
 
62
+ require 'mime/types'
61
63
  @local_root = ::File.expand_path(options[:local_root])
62
64
  end
63
65
 
@@ -15,7 +15,7 @@ module Fog
15
15
  attribute :cache_control, :aliases => 'Cache-Control'
16
16
  attribute :content_disposition, :aliases => 'Content-Disposition'
17
17
  attribute :content_encoding, :aliases => 'Content-Encoding'
18
- attribute :content_length, :aliases => ['Content-Length', 'Size']
18
+ attribute :content_length, :aliases => ['Content-Length', 'Size'], :type => :integer
19
19
  attribute :content_md5, :aliases => 'Content-MD5'
20
20
  attribute :content_type, :aliases => 'Content-Type'
21
21
  attribute :etag, :aliases => ['Etag', 'ETag']
@@ -14,7 +14,7 @@ module Fog
14
14
  attribute :cache_control, :aliases => 'Cache-Control'
15
15
  attribute :content_disposition, :aliases => 'Content-Disposition'
16
16
  attribute :content_encoding, :aliases => 'Content-Encoding'
17
- attribute :content_length, :aliases => ['Content-Length', 'Size']
17
+ attribute :content_length, :aliases => ['Content-Length', 'Size'], :type => :integer
18
18
  attribute :content_md5, :aliases => 'Content-MD5'
19
19
  attribute :content_type, :aliases => 'Content-Type'
20
20
  attribute :etag, :aliases => ['Etag', 'ETag']
@@ -8,7 +8,7 @@ module Fog
8
8
 
9
9
  identity :key, :aliases => 'Key'
10
10
 
11
- attribute :content_length, :aliases => 'Content-Length'
11
+ attribute :content_length, :aliases => 'Content-Length', :type => :integer
12
12
  # attribute :content_type, :aliases => 'Content-Type'
13
13
  attribute :last_modified, :aliases => 'Last-Modified'
14
14
 
@@ -24,6 +24,14 @@ module Fog
24
24
  attributes[:body] = new_body
25
25
  end
26
26
 
27
+ def content_type
28
+ @content_type ||= begin
29
+ unless (mime_types = ::MIME::Types.of(key)).empty?
30
+ mime_types.first.content_type
31
+ end
32
+ end
33
+ end
34
+
27
35
  def directory
28
36
  @directory
29
37
  end
@@ -44,13 +44,13 @@ DATA
44
44
  class Mock # :nodoc:all
45
45
 
46
46
  def put_bucket(bucket_name, options = {})
47
- if options['x-amz-acl']
48
- unless ['private', 'public-read', 'public-read-write', 'authenticated-read']
49
- raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
50
- else
51
- @data[:acls][:bucket][bucket_name] = self.class.acls(options['x-amz-acl'])
52
- end
47
+ acl = options['x-amz-acl'] || 'private'
48
+ if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
49
+ raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
50
+ else
51
+ @data[:acls][:bucket][bucket_name] = self.class.acls(acl)
53
52
  end
53
+
54
54
  response = Excon::Response.new
55
55
  response.status = 200
56
56
  bucket = {
@@ -47,14 +47,14 @@ module Fog
47
47
  class Mock # :nodoc:all
48
48
 
49
49
  def put_object(bucket_name, object_name, data, options = {})
50
- if options['x-amz-acl']
51
- unless ['private', 'public-read', 'public-read-write', 'authenticated-read']
52
- raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
53
- else
54
- @data[:acls][:object][bucket_name] ||= {}
55
- @data[:acls][:object][bucket_name][object_name] = self.class.acls(options['x-amz-acl'])
56
- end
50
+ acl = options['x-amz-acl'] || 'private'
51
+ if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
52
+ raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
53
+ else
54
+ @data[:acls][:object][bucket_name] ||= {}
55
+ @data[:acls][:object][bucket_name][object_name] = self.class.acls(acl)
57
56
  end
57
+
58
58
  data = parse_data(data)
59
59
  unless data[:body].is_a?(String)
60
60
  data[:body] = data[:body].read
@@ -40,12 +40,11 @@ DATA
40
40
  class Mock
41
41
 
42
42
  def put_bucket(bucket_name, options = {})
43
- if options['x-goog-acl']
44
- unless ['private', 'public-read', 'public-read-write', 'authenticated-read']
45
- raise Excon::Errors::BadRequest.new('invalid x-goog-acl')
46
- else
47
- @data[:acls][:bucket][bucket_name] = self.class.acls(options['x-goog-acl'])
48
- end
43
+ acl = options['x-goog-acl'] || 'private'
44
+ if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
45
+ raise Excon::Errors::BadRequest.new('invalid x-goog-acl')
46
+ else
47
+ @data[:acls][:bucket][bucket_name] = self.class.acls(options[acl])
49
48
  end
50
49
  response = Excon::Response.new
51
50
  response.status = 200
@@ -42,14 +42,14 @@ module Fog
42
42
  class Mock
43
43
 
44
44
  def put_object(bucket_name, object_name, data, options = {})
45
- if options['x-goog-acl']
46
- unless ['private', 'public-read', 'public-read-write', 'authenticated-read']
47
- raise Excon::Errors::BadRequest.new('invalid x-goog-acl')
48
- else
49
- @data[:acls][:object][bucket_name] ||= {}
50
- @data[:acls][:object][bucket_name][object_name] = self.class.acls(options['x-goog-acl'])
51
- end
45
+ acl = options['x-goog-acl'] || 'private'
46
+ if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
47
+ raise Excon::Errors::BadRequest.new('invalid x-goog-acl')
48
+ else
49
+ @data[:acls][:object][bucket_name] ||= {}
50
+ @data[:acls][:object][bucket_name][object_name] = self.class.acls(acl)
52
51
  end
52
+
53
53
  data = parse_data(data)
54
54
  unless data[:body].is_a?(String)
55
55
  data[:body] = data[:body].read
@@ -29,6 +29,7 @@ module Fog
29
29
  # * 'last_modified'<~String> - Last modified timestamp
30
30
  # * 'name'<~String> - Name of object
31
31
  def get_container(container, options = {})
32
+ options = options.reject {|key, value| value.nil?}
32
33
  response = request(
33
34
  :expects => 200,
34
35
  :method => 'GET',
@@ -18,6 +18,7 @@ module Fog
18
18
  # * 'count'<~Integer>: - Number of items in container
19
19
  # * 'name'<~String>: - Name of container
20
20
  def get_containers(options = {})
21
+ options = options.reject {|key, value| value.nil?}
21
22
  response = request(
22
23
  :expects => [200, 204],
23
24
  :method => 'GET',
@@ -0,0 +1,15 @@
1
+ class AWS
2
+
3
+ module SES
4
+
5
+ module Formats
6
+
7
+ BASIC = {
8
+ 'ResponseMetadata' => {'RequestId' => String}
9
+ }
10
+
11
+ end
12
+
13
+ end
14
+
15
+ end
@@ -0,0 +1,27 @@
1
+ Shindo.tests('AWS::SES | verified email address requests', ['aws', 'ses']) do
2
+
3
+ tests('success') do
4
+
5
+ tests("#verify_email_address('test@example.com')").formats(AWS::SES::Formats::BASIC) do
6
+ pending if Fog.mocking?
7
+ AWS[:ses].verify_email_address('test@example.com').body
8
+ end
9
+
10
+ tests("#list_verified_email_addresses").formats(AWS::SES::Formats::BASIC.merge('VerifiedEmailAddresses' => [String])) do
11
+ pending if Fog.mocking?
12
+ AWS[:ses].list_verified_email_addresses.body
13
+ end
14
+
15
+ # email won't be there to delete, but succeeds regardless
16
+ tests("#delete_verified_email_address('test@example.com')").formats(AWS::SES::Formats::BASIC) do
17
+ pending if Fog.mocking?
18
+ AWS[:ses].delete_verified_email_address('notaanemail@example.com').body
19
+ end
20
+
21
+ end
22
+
23
+ tests('failure') do
24
+
25
+ end
26
+
27
+ end
@@ -1,4 +1,4 @@
1
- Shindo.tests('TerremarkEcloud::Compute | catalog requests', ['terremark_ecloud']) do
1
+ Shindo.tests('TerremarkEcloud::Compute | catalog requests', ['terremarkecloud']) do
2
2
 
3
3
  @catalog_format = {
4
4
  'name' => String,
@@ -1,4 +1,4 @@
1
- Shindo.tests('TerremarkEcloud::Compute | network requests', ['terremark_ecloud']) do
1
+ Shindo.tests('TerremarkEcloud::Compute | network requests', ['terremarkecloud']) do
2
2
 
3
3
  @network_format = {
4
4
  'Configuration' => {
@@ -1,4 +1,4 @@
1
- Shindo.tests('TerremarkEcloud::Compute | organization requests', ['terremark_ecloud']) do
1
+ Shindo.tests('TerremarkEcloud::Compute | organization requests', ['terremarkecloud']) do
2
2
 
3
3
  @organization_format = {
4
4
  'name' => String,
@@ -1,4 +1,4 @@
1
- Shindo.tests('TerremarkEcloud::Compute | vdc requests', ['terremark_ecloud']) do
1
+ Shindo.tests('TerremarkEcloud::Compute | vdc requests', ['terremarkecloud']) do
2
2
 
3
3
  @vdc_format = {
4
4
  'AvailableNetworks' => [{
@@ -2,48 +2,16 @@ $LOAD_PATH.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[ .. lib
2
2
  require 'fog'
3
3
  require 'fog/bin'
4
4
 
5
- # Use so you can run in mock mode from the command line
6
- #
7
- # FOG_MOCK=true fog
5
+ require File.join(File.dirname(__FILE__), 'helpers', 'mock_helper')
8
6
 
9
- if ENV["FOG_MOCK"] == "true"
10
- Fog.mock!
11
- end
12
-
13
- # if in mocked mode, fill in some fake credentials for us
14
- if Fog.mock?
15
- Fog.instance_variable_set(:@credentials, {
16
- :aws_access_key_id => 'aws_access_key_id',
17
- :aws_secret_access_key => 'aws_secret_access_key',
18
- :bluebox_api_key => 'bluebox_api_key',
19
- :bluebox_customer_id => 'bluebox_customer_id',
20
- :brightbox_client_id => 'brightbox_client_id',
21
- :brightbox_secret => 'brightbox_secret',
22
- :go_grid_api_key => 'go_grid_api_key',
23
- :go_grid_shared_secret => 'go_grid_shared_secret',
24
- :google_storage_access_key_id => 'google_storage_access_key_id',
25
- :google_storage_secret_access_key => 'google_storage_secret_access_key',
26
- :linode_api_key => 'linode_api_key',
27
- :new_servers_password => 'new_servers_password',
28
- :new_servers_username => 'new_servers_username',
29
- # :public_key_path => '~/.ssh/id_rsa.pub',
30
- # :private_key_path => '~/.ssh/id_rsa',
31
- :rackspace_api_key => 'rackspace_api_key',
32
- :rackspace_username => 'rackspace_username',
33
- :slicehost_password => 'slicehost_password',
34
- :zerigo_email => 'zerigo_email',
35
- :zerigo_token => 'zerigo_token'
36
- })
7
+ def lorem_file
8
+ File.open(File.dirname(__FILE__) + '/lorem.txt', 'r')
37
9
  end
38
10
 
39
11
  # check to see which credentials are available and add others to the skipped tags list
40
- all_providers = ['aws', 'bluebox', 'brightbox', 'gogrid', 'google', 'linode', 'local', 'newservers', 'rackspace', 'slicehost', 'zerigo']
12
+ all_providers = ['aws', 'bluebox', 'brightbox', 'gogrid', 'google', 'linode', 'local', 'newservers', 'rackspace', 'slicehost', 'terremarkecloud', 'zerigo']
41
13
  available_providers = Fog.providers.map {|provider| provider.to_s.downcase}
42
14
  for provider in (all_providers - available_providers)
43
15
  Formatador.display_line("[yellow]Skipping tests for [bold]#{provider}[/] [yellow]due to lacking credentials (add some to '~/.fog' to run them)[/]")
44
16
  Thread.current[:tags] << ('-' << provider)
45
17
  end
46
-
47
- def lorem_file
48
- File.open(File.dirname(__FILE__) + '/lorem.txt', 'r')
49
- end
@@ -0,0 +1,33 @@
1
+ # Use so you can run in mock mode from the command line
2
+ #
3
+ # FOG_MOCK=true fog
4
+
5
+ if ENV["FOG_MOCK"] == "true"
6
+ Fog.mock!
7
+ end
8
+
9
+ # if in mocked mode, fill in some fake credentials for us
10
+ if Fog.mock?
11
+ Fog.instance_variable_set(:@credentials, {
12
+ :aws_access_key_id => 'aws_access_key_id',
13
+ :aws_secret_access_key => 'aws_secret_access_key',
14
+ :bluebox_api_key => 'bluebox_api_key',
15
+ :bluebox_customer_id => 'bluebox_customer_id',
16
+ :brightbox_client_id => 'brightbox_client_id',
17
+ :brightbox_secret => 'brightbox_secret',
18
+ :go_grid_api_key => 'go_grid_api_key',
19
+ :go_grid_shared_secret => 'go_grid_shared_secret',
20
+ :google_storage_access_key_id => 'google_storage_access_key_id',
21
+ :google_storage_secret_access_key => 'google_storage_secret_access_key',
22
+ :linode_api_key => 'linode_api_key',
23
+ :new_servers_password => 'new_servers_password',
24
+ :new_servers_username => 'new_servers_username',
25
+ # :public_key_path => '~/.ssh/id_rsa.pub',
26
+ # :private_key_path => '~/.ssh/id_rsa',
27
+ :rackspace_api_key => 'rackspace_api_key',
28
+ :rackspace_username => 'rackspace_username',
29
+ :slicehost_password => 'slicehost_password',
30
+ :zerigo_email => 'zerigo_email',
31
+ :zerigo_token => 'zerigo_token'
32
+ })
33
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 4
9
- - 1
10
- version: 0.4.1
8
+ - 5
9
+ - 0
10
+ version: 0.5.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - geemus (Wesley Beary)
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-21 00:00:00 -08:00
18
+ date: 2011-01-27 00:00:00 -08:00
19
19
  default_executable: fog
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -174,12 +174,12 @@ dependencies:
174
174
  requirements:
175
175
  - - "="
176
176
  - !ruby/object:Gem::Version
177
- hash: 3
177
+ hash: 23
178
178
  segments:
179
179
  - 0
180
- - 1
181
- - 12
182
- version: 0.1.12
180
+ - 2
181
+ - 0
182
+ version: 0.2.0
183
183
  type: :development
184
184
  name: shindo
185
185
  prerelease: false
@@ -226,6 +226,13 @@ files:
226
226
  - lib/fog/aws/parsers/iam/list_groups.rb
227
227
  - lib/fog/aws/parsers/iam/list_policies.rb
228
228
  - lib/fog/aws/parsers/iam/list_users.rb
229
+ - lib/fog/aws/parsers/ses/delete_verified_email_address.rb
230
+ - lib/fog/aws/parsers/ses/get_send_quota.rb
231
+ - lib/fog/aws/parsers/ses/get_send_statistics.rb
232
+ - lib/fog/aws/parsers/ses/list_verified_email_addresses.rb
233
+ - lib/fog/aws/parsers/ses/send_email.rb
234
+ - lib/fog/aws/parsers/ses/send_raw_email.rb
235
+ - lib/fog/aws/parsers/ses/verify_email_address.rb
229
236
  - lib/fog/aws/parsers/simpledb/basic.rb
230
237
  - lib/fog/aws/parsers/simpledb/domain_metadata.rb
231
238
  - lib/fog/aws/parsers/simpledb/get_attributes.rb
@@ -258,6 +265,13 @@ files:
258
265
  - lib/fog/aws/requests/iam/put_user_policy.rb
259
266
  - lib/fog/aws/requests/iam/remove_user_from_group.rb
260
267
  - lib/fog/aws/requests/iam/update_access_key.rb
268
+ - lib/fog/aws/requests/ses/delete_verified_email_address.rb
269
+ - lib/fog/aws/requests/ses/get_send_quota.rb
270
+ - lib/fog/aws/requests/ses/get_send_statistics.rb
271
+ - lib/fog/aws/requests/ses/list_verified_email_addresses.rb
272
+ - lib/fog/aws/requests/ses/send_email.rb
273
+ - lib/fog/aws/requests/ses/send_raw_email.rb
274
+ - lib/fog/aws/requests/ses/verify_email_address.rb
261
275
  - lib/fog/aws/requests/simpledb/batch_put_attributes.rb
262
276
  - lib/fog/aws/requests/simpledb/create_domain.rb
263
277
  - lib/fog/aws/requests/simpledb/delete_attributes.rb
@@ -267,6 +281,7 @@ files:
267
281
  - lib/fog/aws/requests/simpledb/list_domains.rb
268
282
  - lib/fog/aws/requests/simpledb/put_attributes.rb
269
283
  - lib/fog/aws/requests/simpledb/select.rb
284
+ - lib/fog/aws/ses.rb
270
285
  - lib/fog/aws/simpledb.rb
271
286
  - lib/fog/bin.rb
272
287
  - lib/fog/bin/aws.rb
@@ -375,6 +390,7 @@ files:
375
390
  - lib/fog/compute/parsers/aws/describe_key_pairs.rb
376
391
  - lib/fog/compute/parsers/aws/describe_regions.rb
377
392
  - lib/fog/compute/parsers/aws/describe_reserved_instances.rb
393
+ - lib/fog/compute/parsers/aws/describe_reserved_instances_offerings.rb
378
394
  - lib/fog/compute/parsers/aws/describe_security_groups.rb
379
395
  - lib/fog/compute/parsers/aws/describe_snapshots.rb
380
396
  - lib/fog/compute/parsers/aws/describe_tags.rb
@@ -426,6 +442,7 @@ files:
426
442
  - lib/fog/compute/requests/aws/describe_key_pairs.rb
427
443
  - lib/fog/compute/requests/aws/describe_regions.rb
428
444
  - lib/fog/compute/requests/aws/describe_reserved_instances.rb
445
+ - lib/fog/compute/requests/aws/describe_reserved_instances_offerings.rb
429
446
  - lib/fog/compute/requests/aws/describe_security_groups.rb
430
447
  - lib/fog/compute/requests/aws/describe_snapshots.rb
431
448
  - lib/fog/compute/requests/aws/describe_tags.rb
@@ -977,6 +994,8 @@ files:
977
994
  - tests/aws/requests/iam/helper.rb
978
995
  - tests/aws/requests/iam/user_policy_tests.rb
979
996
  - tests/aws/requests/iam/user_tests.rb
997
+ - tests/aws/requests/ses/helper.rb
998
+ - tests/aws/requests/ses/verified_email_address_tests.rb
980
999
  - tests/aws/requests/simpledb/attributes_tests.rb
981
1000
  - tests/aws/requests/simpledb/domain_tests.rb
982
1001
  - tests/aws/requests/simpledb/helper.rb
@@ -1048,6 +1067,7 @@ files:
1048
1067
  - tests/helpers/compute/servers_helper.rb
1049
1068
  - tests/helpers/formats_helper.rb
1050
1069
  - tests/helpers/formats_helper_tests.rb
1070
+ - tests/helpers/mock_helper.rb
1051
1071
  - tests/helpers/model_helper.rb
1052
1072
  - tests/helpers/responds_to_helper.rb
1053
1073
  - tests/helpers/succeeds_helper.rb
@@ -1169,6 +1189,8 @@ test_files:
1169
1189
  - tests/aws/requests/iam/helper.rb
1170
1190
  - tests/aws/requests/iam/user_policy_tests.rb
1171
1191
  - tests/aws/requests/iam/user_tests.rb
1192
+ - tests/aws/requests/ses/helper.rb
1193
+ - tests/aws/requests/ses/verified_email_address_tests.rb
1172
1194
  - tests/aws/requests/simpledb/attributes_tests.rb
1173
1195
  - tests/aws/requests/simpledb/domain_tests.rb
1174
1196
  - tests/aws/requests/simpledb/helper.rb
@@ -1240,6 +1262,7 @@ test_files:
1240
1262
  - tests/helpers/compute/servers_helper.rb
1241
1263
  - tests/helpers/formats_helper.rb
1242
1264
  - tests/helpers/formats_helper_tests.rb
1265
+ - tests/helpers/mock_helper.rb
1243
1266
  - tests/helpers/model_helper.rb
1244
1267
  - tests/helpers/responds_to_helper.rb
1245
1268
  - tests/helpers/succeeds_helper.rb