Sha256: 7bb0ad28c54c6aa23bfff25dcd2d4d24c634a345850968da59322ce6ae098400
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
=begin Titan API The ultimate, language agnostic, container based job processing framework. OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'spec_helper' require 'json' # Unit tests for IronTitan::GroupsApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'GroupsApi' do before do # run before each test @instance = IronTitan::GroupsApi.new end after do # run after each test end describe 'test an instance of GroupsApi' do it 'should create an instact of GroupsApi' do @instance.should be_a(IronTitan::GroupsApi) end end # unit tests for groups_get # Get all group names. # Get a list of all the groups in the system. # @param [Hash] opts the optional parameters # @return [GroupsWrapper] describe 'groups_get test' do it "should work" do # assertion here # should be_a() # should be_nil # should == # should_not == end end # unit tests for groups_name_get # Get information for a group. # This gives more details about a job group, such as statistics. # @param name name of the group. # @param [Hash] opts the optional parameters # @return [GroupWrapper] describe 'groups_name_get test' do it "should work" do # assertion here # should be_a() # should be_nil # should == # should_not == end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iron_titan-0.3.0 | spec/api/groups_api_spec.rb |