pulp_ansible_client 0.22.3 → 0.22.4

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersion.md +5 -5
  4. data/docs/AnsibleCollectionVersionResponse.md +5 -5
  5. data/docs/AnsibleGitRemote.md +28 -28
  6. data/docs/AnsibleGitRemoteResponse.md +28 -28
  7. data/docs/AnsibleRole.md +3 -3
  8. data/docs/AnsibleRoleResponse.md +5 -5
  9. data/docs/ContentCollectionVersionsApi.md +4 -4
  10. data/docs/PatchedansibleGitRemote.md +28 -28
  11. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +6 -6
  12. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +20 -20
  13. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +20 -20
  14. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +21 -21
  15. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +21 -21
  16. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +237 -237
  17. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +145 -145
  18. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  19. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +20 -20
  20. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +20 -20
  21. data/lib/pulp_ansible_client/models/ansible_role_response.rb +21 -21
  22. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +20 -20
  23. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +228 -228
  24. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +20 -20
  25. data/lib/pulp_ansible_client/version.rb +1 -1
  26. data/spec/api/content_collection_versions_api_spec.rb +2 -2
  27. data/spec/models/ansible_collection_version_response_spec.rb +5 -5
  28. data/spec/models/ansible_collection_version_spec.rb +5 -5
  29. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  30. data/spec/models/ansible_git_remote_spec.rb +20 -20
  31. data/spec/models/ansible_role_response_spec.rb +5 -5
  32. data/spec/models/ansible_role_spec.rb +2 -2
  33. data/spec/models/patchedansible_git_remote_spec.rb +20 -20
  34. metadata +132 -132
@@ -304,20 +304,20 @@ module PulpAnsibleClient
304
304
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
305
305
  end
306
306
 
307
- if !@total_timeout.nil? && @total_timeout < 0
308
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
307
+ if !@total_timeout.nil? && @total_timeout < 0.0
308
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
309
309
  end
310
310
 
311
- if !@connect_timeout.nil? && @connect_timeout < 0
312
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
311
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
312
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
313
313
  end
314
314
 
315
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
316
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
315
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
316
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
317
317
  end
318
318
 
319
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0
320
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
319
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
320
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
321
321
  end
322
322
 
323
323
  invalid_properties
@@ -337,10 +337,10 @@ module PulpAnsibleClient
337
337
  return false if !@username.nil? && @username.to_s.length < 1
338
338
  return false if !@password.nil? && @password.to_s.length < 1
339
339
  return false if !@download_concurrency.nil? && @download_concurrency < 1
340
- return false if !@total_timeout.nil? && @total_timeout < 0
341
- return false if !@connect_timeout.nil? && @connect_timeout < 0
342
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
343
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
340
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
341
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
342
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
343
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
344
344
  true
345
345
  end
346
346
 
@@ -457,8 +457,8 @@ module PulpAnsibleClient
457
457
  # Custom attribute writer method with validation
458
458
  # @param [Object] total_timeout Value to be assigned
459
459
  def total_timeout=(total_timeout)
460
- if !total_timeout.nil? && total_timeout < 0
461
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
460
+ if !total_timeout.nil? && total_timeout < 0.0
461
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
462
462
  end
463
463
 
464
464
  @total_timeout = total_timeout
@@ -467,8 +467,8 @@ module PulpAnsibleClient
467
467
  # Custom attribute writer method with validation
468
468
  # @param [Object] connect_timeout Value to be assigned
469
469
  def connect_timeout=(connect_timeout)
470
- if !connect_timeout.nil? && connect_timeout < 0
471
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
470
+ if !connect_timeout.nil? && connect_timeout < 0.0
471
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
472
472
  end
473
473
 
474
474
  @connect_timeout = connect_timeout
@@ -477,8 +477,8 @@ module PulpAnsibleClient
477
477
  # Custom attribute writer method with validation
478
478
  # @param [Object] sock_connect_timeout Value to be assigned
479
479
  def sock_connect_timeout=(sock_connect_timeout)
480
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0
481
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
480
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
481
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
482
482
  end
483
483
 
484
484
  @sock_connect_timeout = sock_connect_timeout
@@ -487,8 +487,8 @@ module PulpAnsibleClient
487
487
  # Custom attribute writer method with validation
488
488
  # @param [Object] sock_read_timeout Value to be assigned
489
489
  def sock_read_timeout=(sock_read_timeout)
490
- if !sock_read_timeout.nil? && sock_read_timeout < 0
491
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
490
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
491
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
492
492
  end
493
493
 
494
494
  @sock_read_timeout = sock_read_timeout
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.22.3'
14
+ VERSION = '0.22.4'
15
15
  end
@@ -36,11 +36,11 @@ describe 'ContentCollectionVersionsApi' do
36
36
  # Create a collection version
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
40
+ # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
39
41
  # @option opts [String] :artifact Artifact file representing the physical content
40
42
  # @option opts [File] :file An uploaded file that may be turned into the content unit.
41
43
  # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
42
- # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
43
- # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
44
44
  # @option opts [String] :expected_name The name of the collection.
45
45
  # @option opts [String] :expected_namespace The namespace of the collection.
46
46
  # @option opts [String] :expected_version The version of the collection.
@@ -32,31 +32,31 @@ describe 'AnsibleCollectionVersionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "pulp_created"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_last_updated"' do
41
+ describe 'test attribute "artifact"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_created"' do
47
+ describe 'test attribute "prn"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_href"' do
53
+ describe 'test attribute "pulp_last_updated"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "prn"' do
59
+ describe 'test attribute "pulp_href"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,31 +32,31 @@ describe 'AnsibleCollectionVersion' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersion)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "upload"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "file"' do
41
+ describe 'test attribute "repository"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "file_url"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "upload"' do
53
+ describe 'test attribute "file"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "file_url"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,25 +32,25 @@ describe 'AnsibleGitRemoteResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemoteResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "download_concurrency"' do
35
+ describe 'test attribute "rate_limit"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "tls_validation"' do
41
+ describe 'test attribute "client_cert"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "headers"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "ca_cert"' do
53
+ describe 'test attribute "prn"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
@@ -62,91 +62,91 @@ describe 'AnsibleGitRemoteResponse' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "sock_read_timeout"' do
65
+ describe 'test attribute "connect_timeout"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "hidden_fields"' do
71
+ describe 'test attribute "url"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "name"' do
77
+ describe 'test attribute "pulp_href"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_href"' do
83
+ describe 'test attribute "hidden_fields"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "proxy_url"' do
89
+ describe 'test attribute "sock_read_timeout"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "connect_timeout"' do
95
+ describe 'test attribute "proxy_url"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
99
99
  end
100
100
 
101
- describe 'test attribute "url"' do
101
+ describe 'test attribute "pulp_created"' do
102
102
  it 'should work' do
103
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "rate_limit"' do
107
+ describe 'test attribute "download_concurrency"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "sock_connect_timeout"' do
113
+ describe 'test attribute "name"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "total_timeout"' do
119
+ describe 'test attribute "sock_connect_timeout"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "pulp_created"' do
125
+ describe 'test attribute "total_timeout"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
129
129
  end
130
130
 
131
- describe 'test attribute "max_retries"' do
131
+ describe 'test attribute "ca_cert"' do
132
132
  it 'should work' do
133
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
134
  end
135
135
  end
136
136
 
137
- describe 'test attribute "client_cert"' do
137
+ describe 'test attribute "max_retries"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
140
  end
141
141
  end
142
142
 
143
- describe 'test attribute "prn"' do
143
+ describe 'test attribute "tls_validation"' do
144
144
  it 'should work' do
145
145
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
146
  end
147
147
  end
148
148
 
149
- describe 'test attribute "headers"' do
149
+ describe 'test attribute "pulp_labels"' do
150
150
  it 'should work' do
151
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
152
  end
@@ -32,121 +32,121 @@ describe 'AnsibleGitRemote' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemote)
33
33
  end
34
34
  end
35
- describe 'test attribute "download_concurrency"' do
35
+ describe 'test attribute "rate_limit"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "username"' do
41
+ describe 'test attribute "password"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "tls_validation"' do
47
+ describe 'test attribute "client_cert"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_labels"' do
53
+ describe 'test attribute "headers"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "ca_cert"' do
59
+ describe 'test attribute "connect_timeout"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "sock_read_timeout"' do
65
+ describe 'test attribute "url"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "client_key"' do
71
+ describe 'test attribute "sock_read_timeout"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "name"' do
77
+ describe 'test attribute "proxy_url"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "proxy_url"' do
83
+ describe 'test attribute "download_concurrency"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "connect_timeout"' do
89
+ describe 'test attribute "name"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "url"' do
95
+ describe 'test attribute "sock_connect_timeout"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
99
99
  end
100
100
 
101
- describe 'test attribute "rate_limit"' do
101
+ describe 'test attribute "client_key"' do
102
102
  it 'should work' do
103
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "sock_connect_timeout"' do
107
+ describe 'test attribute "total_timeout"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "proxy_password"' do
113
+ describe 'test attribute "ca_cert"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "total_timeout"' do
119
+ describe 'test attribute "max_retries"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "max_retries"' do
125
+ describe 'test attribute "proxy_password"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
129
129
  end
130
130
 
131
- describe 'test attribute "proxy_username"' do
131
+ describe 'test attribute "username"' do
132
132
  it 'should work' do
133
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
134
  end
135
135
  end
136
136
 
137
- describe 'test attribute "client_cert"' do
137
+ describe 'test attribute "tls_validation"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
140
  end
141
141
  end
142
142
 
143
- describe 'test attribute "password"' do
143
+ describe 'test attribute "pulp_labels"' do
144
144
  it 'should work' do
145
145
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
146
  end
147
147
  end
148
148
 
149
- describe 'test attribute "headers"' do
149
+ describe 'test attribute "proxy_username"' do
150
150
  it 'should work' do
151
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
152
  end
@@ -32,31 +32,31 @@ describe 'AnsibleRoleResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleRoleResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "pulp_created"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_last_updated"' do
41
+ describe 'test attribute "artifact"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_created"' do
47
+ describe 'test attribute "prn"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_href"' do
53
+ describe 'test attribute "pulp_last_updated"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "prn"' do
59
+ describe 'test attribute "pulp_href"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,13 +32,13 @@ describe 'AnsibleRole' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleRole)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "repository"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "repository"' do
41
+ describe 'test attribute "artifact"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end