blob: 89831fb433f281b339ff2498b543d74f9a8e501e [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
require_relative '../test_helper'
describe Deltacloud::Client::Methods::<%=name.to_s.camelize%> do
before do
VCR.insert_cassette(__name__)
@client = new_client
end
after do
VCR.eject_cassette
end
it 'supports #<%=name.to_s.pluralize%>' do
@client.must_respond_to :<%=name.to_s.pluralize%>
@client.<%=name.to_s.pluralize%>.must_be_kind_of Array
@client.<%=name.to_s.pluralize%>.each { |r| r.must_be_instance_of Deltacloud::Client::<%=name.to_s.camelize%> }
end
it 'supports filtering #<%=name.to_s.pluralize%> by :id param' do
result = @client.<%=name.to_s.pluralize%>(:id => 'XXX')
result.must_be_kind_of Array
result.size.must_equal 1
result.first.must_be_instance_of Deltacloud::Client::<%=name.to_s.camelize%>
result = @client.<%=name.to_s.pluralize%>(:id => 'unknown')
result.must_be_kind_of Array
result.size.must_equal 0
end
it 'support #<%=name.to_s%>' do
@client.must_respond_to :<%=name%>
result = @client.<%=name%>('XXX')
result.must_be_instance_of Deltacloud::Client::<%=name.to_s.camelize%>
lambda { @client.<%=name%>(nil) }.must_raise Deltacloud::Client::NotFound
lambda { @client.<%=name%>('foo') }.must_raise Deltacloud::Client::NotFound
end
end