File: describe_reserved_cache_nodes.rb

package info (click to toggle)
ruby-fog-aws 3.33.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,180 kB
  • sloc: ruby: 75,405; javascript: 14; makefile: 9; sh: 4
file content (17 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Shindo.tests('AWS::Elasticache | describe reserved cache nodes',
  ['aws', 'elasticache']) do

  tests('success') do
    pending if Fog.mocking?

    tests(
    '#describe_reserved_cache_nodes'
    ).formats(AWS::Elasticache::Formats::RESERVED_CACHE_NODES) do
      Fog::AWS[:elasticache].describe_reserved_cache_nodes().body['ReservedCacheNodes']
    end
  end

  tests('failure') do
    # TODO:
  end
end