pulpcore_client 3.17.8 → 3.18.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 (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -4
  3. data/docs/AccessPolicy.md +2 -2
  4. data/docs/AccessPolicyResponse.md +2 -2
  5. data/docs/ContentRedirectContentGuard.md +19 -0
  6. data/docs/ContentRedirectContentGuardResponse.md +23 -0
  7. data/docs/ContentguardsContentRedirectApi.md +361 -0
  8. data/docs/PaginatedContentRedirectContentGuardResponseList.md +23 -0
  9. data/docs/PaginatedTaskScheduleResponseList.md +23 -0
  10. data/docs/PatchedContentRedirectContentGuard.md +19 -0
  11. data/docs/TaskScheduleResponse.md +29 -0
  12. data/docs/TaskSchedulesApi.md +368 -0
  13. data/docs/WorkerResponse.md +6 -4
  14. data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +440 -0
  15. data/lib/pulpcore_client/api/task_schedules_api.rb +441 -0
  16. data/lib/pulpcore_client/api_client.rb +4 -1
  17. data/lib/pulpcore_client/configuration.rb +0 -1
  18. data/lib/pulpcore_client/models/access_policy.rb +0 -10
  19. data/lib/pulpcore_client/models/access_policy_response.rb +0 -10
  20. data/lib/pulpcore_client/models/content_redirect_content_guard.rb +258 -0
  21. data/lib/pulpcore_client/models/content_redirect_content_guard_response.rb +243 -0
  22. data/lib/pulpcore_client/models/paginated_content_redirect_content_guard_response_list.rb +237 -0
  23. data/lib/pulpcore_client/models/paginated_task_schedule_response_list.rb +237 -0
  24. data/lib/pulpcore_client/models/patched_content_redirect_content_guard.rb +249 -0
  25. data/lib/pulpcore_client/models/task_schedule_response.rb +282 -0
  26. data/lib/pulpcore_client/models/worker_response.rb +23 -13
  27. data/lib/pulpcore_client/version.rb +1 -1
  28. data/lib/pulpcore_client.rb +8 -0
  29. data/spec/api/contentguards_content_redirect_api_spec.rb +120 -0
  30. data/spec/api/task_schedules_api_spec.rb +119 -0
  31. data/spec/models/content_redirect_content_guard_response_spec.rb +59 -0
  32. data/spec/models/content_redirect_content_guard_spec.rb +47 -0
  33. data/spec/models/paginated_content_redirect_content_guard_response_list_spec.rb +59 -0
  34. data/spec/models/paginated_task_schedule_response_list_spec.rb +59 -0
  35. data/spec/models/patched_content_redirect_content_guard_spec.rb +47 -0
  36. data/spec/models/task_schedule_response_spec.rb +77 -0
  37. data/spec/models/worker_response_spec.rb +8 -2
  38. metadata +147 -115
@@ -0,0 +1,120 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for PulpcoreClient::ContentguardsContentRedirectApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'ContentguardsContentRedirectApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = PulpcoreClient::ContentguardsContentRedirectApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of ContentguardsContentRedirectApi' do
30
+ it 'should create an instance of ContentguardsContentRedirectApi' do
31
+ expect(@api_instance).to be_instance_of(PulpcoreClient::ContentguardsContentRedirectApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for create
36
+ # Create a content redirect content guard
37
+ # Content guard to protect preauthenticated redirects to the content app.
38
+ # @param content_redirect_content_guard
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [ContentRedirectContentGuardResponse]
41
+ describe 'create test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for delete
48
+ # Delete a content redirect content guard
49
+ # Content guard to protect preauthenticated redirects to the content app.
50
+ # @param content_redirect_content_guard_href
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [nil]
53
+ describe 'delete test' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ # unit tests for list
60
+ # List content redirect content guards
61
+ # Content guard to protect preauthenticated redirects to the content app.
62
+ # @param [Hash] opts the optional parameters
63
+ # @option opts [Integer] :limit Number of results to return per page.
64
+ # @option opts [String] :name
65
+ # @option opts [String] :name__contains Filter results where name contains value
66
+ # @option opts [String] :name__icontains Filter results where name contains value
67
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
68
+ # @option opts [String] :name__startswith Filter results where name starts with value
69
+ # @option opts [Integer] :offset The initial index from which to return the results.
70
+ # @option opts [String] :ordering Which field to use when ordering the results.
71
+ # @option opts [String] :fields A list of fields to include in the response.
72
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
73
+ # @return [PaginatedContentRedirectContentGuardResponseList]
74
+ describe 'list test' do
75
+ it 'should work' do
76
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
77
+ end
78
+ end
79
+
80
+ # unit tests for partial_update
81
+ # Update a content redirect content guard
82
+ # Content guard to protect preauthenticated redirects to the content app.
83
+ # @param content_redirect_content_guard_href
84
+ # @param patched_content_redirect_content_guard
85
+ # @param [Hash] opts the optional parameters
86
+ # @return [ContentRedirectContentGuardResponse]
87
+ describe 'partial_update test' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ # unit tests for read
94
+ # Inspect a content redirect content guard
95
+ # Content guard to protect preauthenticated redirects to the content app.
96
+ # @param content_redirect_content_guard_href
97
+ # @param [Hash] opts the optional parameters
98
+ # @option opts [String] :fields A list of fields to include in the response.
99
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
100
+ # @return [ContentRedirectContentGuardResponse]
101
+ describe 'read test' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ # unit tests for update
108
+ # Update a content redirect content guard
109
+ # Content guard to protect preauthenticated redirects to the content app.
110
+ # @param content_redirect_content_guard_href
111
+ # @param content_redirect_content_guard
112
+ # @param [Hash] opts the optional parameters
113
+ # @return [ContentRedirectContentGuardResponse]
114
+ describe 'update test' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
117
+ end
118
+ end
119
+
120
+ end
@@ -0,0 +1,119 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for PulpcoreClient::TaskSchedulesApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'TaskSchedulesApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = PulpcoreClient::TaskSchedulesApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of TaskSchedulesApi' do
30
+ it 'should create an instance of TaskSchedulesApi' do
31
+ expect(@api_instance).to be_instance_of(PulpcoreClient::TaskSchedulesApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for add_role
36
+ # Add a role for this object to users/groups.
37
+ # @param task_schedule_href
38
+ # @param nested_role
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [NestedRoleResponse]
41
+ describe 'add_role test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for list
48
+ # List task schedules
49
+ # ViewSet to monitor task schedules. NOTE: This feature is in tech-preview and may change in backwards incompatible ways.
50
+ # @param [Hash] opts the optional parameters
51
+ # @option opts [Integer] :limit Number of results to return per page.
52
+ # @option opts [String] :name
53
+ # @option opts [String] :name__contains Filter results where name contains value
54
+ # @option opts [Integer] :offset The initial index from which to return the results.
55
+ # @option opts [String] :ordering Which field to use when ordering the results.
56
+ # @option opts [String] :task_name
57
+ # @option opts [String] :task_name__contains Filter results where task_name contains value
58
+ # @option opts [String] :fields A list of fields to include in the response.
59
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
60
+ # @return [PaginatedTaskScheduleResponseList]
61
+ describe 'list test' do
62
+ it 'should work' do
63
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
64
+ end
65
+ end
66
+
67
+ # unit tests for list_roles
68
+ # List roles assigned to this object.
69
+ # @param task_schedule_href
70
+ # @param [Hash] opts the optional parameters
71
+ # @option opts [String] :fields A list of fields to include in the response.
72
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
73
+ # @return [ObjectRolesResponse]
74
+ describe 'list_roles test' do
75
+ it 'should work' do
76
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
77
+ end
78
+ end
79
+
80
+ # unit tests for my_permissions
81
+ # List permissions available to the current user on this object.
82
+ # @param task_schedule_href
83
+ # @param [Hash] opts the optional parameters
84
+ # @option opts [String] :fields A list of fields to include in the response.
85
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
86
+ # @return [MyPermissionsResponse]
87
+ describe 'my_permissions test' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ # unit tests for read
94
+ # Inspect a task schedule
95
+ # ViewSet to monitor task schedules. NOTE: This feature is in tech-preview and may change in backwards incompatible ways.
96
+ # @param task_schedule_href
97
+ # @param [Hash] opts the optional parameters
98
+ # @option opts [String] :fields A list of fields to include in the response.
99
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
100
+ # @return [TaskScheduleResponse]
101
+ describe 'read test' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ # unit tests for remove_role
108
+ # Remove a role for this object from users/groups.
109
+ # @param task_schedule_href
110
+ # @param nested_role
111
+ # @param [Hash] opts the optional parameters
112
+ # @return [NestedRoleResponse]
113
+ describe 'remove_role test' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::ContentRedirectContentGuardResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ContentRedirectContentGuardResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::ContentRedirectContentGuardResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ContentRedirectContentGuardResponse' do
31
+ it 'should create an instance of ContentRedirectContentGuardResponse' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::ContentRedirectContentGuardResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "pulp_created"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "name"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "description"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::ContentRedirectContentGuard
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ContentRedirectContentGuard' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::ContentRedirectContentGuard.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ContentRedirectContentGuard' do
31
+ it 'should create an instance of ContentRedirectContentGuard' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::ContentRedirectContentGuard)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "description"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::PaginatedContentRedirectContentGuardResponseList
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PaginatedContentRedirectContentGuardResponseList' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::PaginatedContentRedirectContentGuardResponseList.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PaginatedContentRedirectContentGuardResponseList' do
31
+ it 'should create an instance of PaginatedContentRedirectContentGuardResponseList' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::PaginatedContentRedirectContentGuardResponseList)
33
+ end
34
+ end
35
+ describe 'test attribute "count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "_next"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "previous"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "results"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::PaginatedTaskScheduleResponseList
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PaginatedTaskScheduleResponseList' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::PaginatedTaskScheduleResponseList.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PaginatedTaskScheduleResponseList' do
31
+ it 'should create an instance of PaginatedTaskScheduleResponseList' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::PaginatedTaskScheduleResponseList)
33
+ end
34
+ end
35
+ describe 'test attribute "count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "_next"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "previous"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "results"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::PatchedContentRedirectContentGuard
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PatchedContentRedirectContentGuard' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::PatchedContentRedirectContentGuard.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PatchedContentRedirectContentGuard' do
31
+ it 'should create an instance of PatchedContentRedirectContentGuard' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::PatchedContentRedirectContentGuard)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "description"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::TaskScheduleResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskScheduleResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpcoreClient::TaskScheduleResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskScheduleResponse' do
31
+ it 'should create an instance of TaskScheduleResponse' do
32
+ expect(@instance).to be_instance_of(PulpcoreClient::TaskScheduleResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "pulp_created"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "name"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "task_name"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "dispatch_interval"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "next_dispatch"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "last_task"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ end
@@ -32,13 +32,13 @@ describe 'WorkerResponse' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::WorkerResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' 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_href"' do
41
+ describe 'test attribute "pulp_created"' 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
@@ -56,4 +56,10 @@ describe 'WorkerResponse' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "current_task"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
59
65
  end