phrase 1.0.9 → 1.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -3
  3. data/docs/Invitation.md +9 -1
  4. data/docs/InvitationCreateParameters.md +4 -0
  5. data/docs/InvitationUpdateParameters.md +4 -0
  6. data/docs/InvitationUpdateSettingsParameters.md +19 -0
  7. data/docs/InvitationsApi.md +66 -0
  8. data/docs/JobLocale.md +3 -1
  9. data/docs/Member.md +7 -1
  10. data/docs/MemberProjectDetail.md +35 -0
  11. data/docs/MemberProjectDetailProjectRoles.md +19 -0
  12. data/docs/MemberSpaces.md +25 -0
  13. data/docs/MemberUpdateParameters.md +4 -0
  14. data/docs/MemberUpdateSettingsParameters.md +19 -0
  15. data/docs/MembersApi.md +66 -0
  16. data/docs/ProjectUpdateParameters.md +43 -9
  17. data/docs/ScreenshotCreateParameters.md +3 -1
  18. data/docs/ScreenshotMarkerCreateParameters.md +3 -1
  19. data/docs/ScreenshotMarkerUpdateParameters.md +3 -1
  20. data/docs/ScreenshotMarkersApi.md +9 -3
  21. data/docs/ScreenshotUpdateParameters.md +3 -1
  22. data/docs/ScreenshotsApi.md +8 -2
  23. data/docs/Variable.md +23 -0
  24. data/docs/VariableCreateParameters.md +19 -0
  25. data/docs/VariableUpdateParameters.md +19 -0
  26. data/docs/VariablesApi.md +331 -0
  27. data/lib/phrase.rb +9 -0
  28. data/lib/phrase/api/invitations_api.rb +80 -0
  29. data/lib/phrase/api/members_api.rb +80 -0
  30. data/lib/phrase/api/screenshot_markers_api.rb +9 -0
  31. data/lib/phrase/api/screenshots_api.rb +9 -0
  32. data/lib/phrase/api/variables_api.rb +378 -0
  33. data/lib/phrase/models/invitation.rb +48 -4
  34. data/lib/phrase/models/invitation_create_parameters.rb +25 -1
  35. data/lib/phrase/models/invitation_update_parameters.rb +25 -1
  36. data/lib/phrase/models/invitation_update_settings_parameters.rb +207 -0
  37. data/lib/phrase/models/job_locale.rb +13 -4
  38. data/lib/phrase/models/member.rb +35 -4
  39. data/lib/phrase/models/member_project_detail.rb +285 -0
  40. data/lib/phrase/models/member_project_detail_project_roles.rb +203 -0
  41. data/lib/phrase/models/member_spaces.rb +230 -0
  42. data/lib/phrase/models/member_update_parameters.rb +25 -1
  43. data/lib/phrase/models/member_update_settings_parameters.rb +207 -0
  44. data/lib/phrase/models/project_update_parameters.rb +183 -13
  45. data/lib/phrase/models/screenshot_create_parameters.rb +11 -1
  46. data/lib/phrase/models/screenshot_marker_create_parameters.rb +11 -1
  47. data/lib/phrase/models/screenshot_marker_update_parameters.rb +11 -1
  48. data/lib/phrase/models/screenshot_update_parameters.rb +11 -1
  49. data/lib/phrase/models/variable.rb +221 -0
  50. data/lib/phrase/models/variable_create_parameters.rb +205 -0
  51. data/lib/phrase/models/variable_update_parameters.rb +205 -0
  52. data/lib/phrase/version.rb +1 -1
  53. data/spec/api/invitations_api_spec.rb +15 -0
  54. data/spec/api/members_api_spec.rb +15 -0
  55. data/spec/api/screenshot_markers_api_spec.rb +3 -0
  56. data/spec/api/screenshots_api_spec.rb +3 -0
  57. data/spec/api/variables_api_spec.rb +95 -0
  58. data/spec/models/invitation_create_parameters_spec.rb +12 -0
  59. data/spec/models/invitation_spec.rb +24 -0
  60. data/spec/models/invitation_update_parameters_spec.rb +12 -0
  61. data/spec/models/invitation_update_settings_parameters_spec.rb +35 -0
  62. data/spec/models/job_locale_spec.rb +6 -0
  63. data/spec/models/member_project_detail_project_roles_spec.rb +35 -0
  64. data/spec/models/member_project_detail_spec.rb +83 -0
  65. data/spec/models/member_spaces_spec.rb +53 -0
  66. data/spec/models/member_spec.rb +18 -0
  67. data/spec/models/member_update_parameters_spec.rb +12 -0
  68. data/spec/models/member_update_settings_parameters_spec.rb +35 -0
  69. data/spec/models/project_update_parameters_spec.rb +103 -1
  70. data/spec/models/screenshot_create_parameters_spec.rb +6 -0
  71. data/spec/models/screenshot_marker_create_parameters_spec.rb +6 -0
  72. data/spec/models/screenshot_marker_update_parameters_spec.rb +6 -0
  73. data/spec/models/screenshot_update_parameters_spec.rb +6 -0
  74. data/spec/models/variable_create_parameters_spec.rb +35 -0
  75. data/spec/models/variable_spec.rb +47 -0
  76. data/spec/models/variable_update_parameters_spec.rb +35 -0
  77. metadata +196 -160
@@ -1,3 +1,3 @@
1
1
  module Phrase
2
- VERSION = '1.0.9'
2
+ VERSION = '1.0.14'
3
3
  end
@@ -91,6 +91,21 @@ describe 'InvitationsApi' do
91
91
  end
92
92
  end
93
93
 
94
+ # unit tests for invitation_update_settings
95
+ # Update a member's invitation access
96
+ # Update member's settings in the invitations. Access token scope must include <code>team.manage</code>.
97
+ # @param project_id Project ID
98
+ # @param id ID
99
+ # @param invitation_update_settings_parameters
100
+ # @param [Hash] opts the optional parameters
101
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
102
+ # @return [Invitation]
103
+ describe 'invitation_update_settings test' do
104
+ it 'should work' do
105
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
106
+ end
107
+ end
108
+
94
109
  # unit tests for invitations_list
95
110
  # List invitations
96
111
  # List invitations for an account. It will also list the accessible resources like projects and locales the invited user has access to. In case nothing is shown the default access from the role is used. Access token scope must include <code>team.manage</code>.
@@ -63,6 +63,21 @@ describe 'MembersApi' do
63
63
  end
64
64
  end
65
65
 
66
+ # unit tests for member_update_settings
67
+ # Update a member's project settings
68
+ # Update user settings in the project. Access token scope must include <code>team.manage</code>.
69
+ # @param project_id Project ID
70
+ # @param id ID
71
+ # @param member_update_settings_parameters
72
+ # @param [Hash] opts the optional parameters
73
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
74
+ # @return [MemberProjectDetail]
75
+ describe 'member_update_settings test' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
66
81
  # unit tests for members_list
67
82
  # List members
68
83
  # Get all users active in the account. It also lists resources like projects and locales the member has access to. In case nothing is shown the default access from the role is used. Access token scope must include <code>team.manage</code>.
@@ -42,6 +42,7 @@ describe 'ScreenshotMarkersApi' do
42
42
  # @param screenshot_id Screenshot ID
43
43
  # @param [Hash] opts the optional parameters
44
44
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
45
+ # @option opts [String] :branch specify the branch to use
45
46
  # @return [nil]
46
47
  describe 'screenshot_marker_delete test' do
47
48
  it 'should work' do
@@ -57,6 +58,7 @@ describe 'ScreenshotMarkersApi' do
57
58
  # @param id ID
58
59
  # @param [Hash] opts the optional parameters
59
60
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
61
+ # @option opts [String] :branch specify the branch to use
60
62
  # @return [ScreenshotMarker]
61
63
  describe 'screenshot_marker_show test' do
62
64
  it 'should work' do
@@ -88,6 +90,7 @@ describe 'ScreenshotMarkersApi' do
88
90
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
89
91
  # @option opts [Integer] :page Page number
90
92
  # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
93
+ # @option opts [String] :branch specify the branch to use
91
94
  # @return [Array<ScreenshotMarker>]
92
95
  describe 'screenshot_markers_list test' do
93
96
  it 'should work' do
@@ -41,6 +41,7 @@ describe 'ScreenshotsApi' do
41
41
  # @param id ID
42
42
  # @param [Hash] opts the optional parameters
43
43
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
44
+ # @option opts [String] :branch specify the branch to use
44
45
  # @return [nil]
45
46
  describe 'screenshot_delete test' do
46
47
  it 'should work' do
@@ -55,6 +56,7 @@ describe 'ScreenshotsApi' do
55
56
  # @param id ID
56
57
  # @param [Hash] opts the optional parameters
57
58
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
59
+ # @option opts [String] :branch specify the branch to use
58
60
  # @return [Screenshot]
59
61
  describe 'screenshot_show test' do
60
62
  it 'should work' do
@@ -85,6 +87,7 @@ describe 'ScreenshotsApi' do
85
87
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
86
88
  # @option opts [Integer] :page Page number
87
89
  # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
90
+ # @option opts [String] :branch specify the branch to use
88
91
  # @option opts [String] :key_id filter by key
89
92
  # @return [Array<Screenshot>]
90
93
  describe 'screenshots_list test' do
@@ -0,0 +1,95 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+
4
+ # Unit tests for Phrase::VariablesApi
5
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
6
+ # Please update as you see appropriate
7
+ describe 'VariablesApi' do
8
+ before do
9
+ # run before each test
10
+ @api_instance = Phrase::VariablesApi.new
11
+ end
12
+
13
+ after do
14
+ # run after each test
15
+ end
16
+
17
+ describe 'test an instance of VariablesApi' do
18
+ it 'should create an instance of VariablesApi' do
19
+ expect(@api_instance).to be_instance_of(Phrase::VariablesApi)
20
+ end
21
+ end
22
+
23
+ # unit tests for variable_create
24
+ # Create a variable
25
+ # Create a new variable.
26
+ # @param project_id Project ID
27
+ # @param variable_create_parameters
28
+ # @param [Hash] opts the optional parameters
29
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
30
+ # @return [Variable]
31
+ describe 'variable_create test' do
32
+ it 'should work' do
33
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
34
+ end
35
+ end
36
+
37
+ # unit tests for variable_delete
38
+ # Delete a variable
39
+ # Delete an existing variable.
40
+ # @param project_id Project ID
41
+ # @param name name
42
+ # @param [Hash] opts the optional parameters
43
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
44
+ # @return [nil]
45
+ describe 'variable_delete test' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ # unit tests for variable_show
52
+ # Get a single variable
53
+ # Get details on a single variable for a given project.
54
+ # @param project_id Project ID
55
+ # @param name name
56
+ # @param [Hash] opts the optional parameters
57
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
58
+ # @return [Variable]
59
+ describe 'variable_show test' 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
+ # unit tests for variable_update
66
+ # Update a variable
67
+ # Update an existing variable.
68
+ # @param project_id Project ID
69
+ # @param name name
70
+ # @param variable_update_parameters
71
+ # @param [Hash] opts the optional parameters
72
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
73
+ # @return [Variable]
74
+ describe 'variable_update 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 variables_list
81
+ # List variables
82
+ # List all variables for the current project.
83
+ # @param project_id Project ID
84
+ # @param [Hash] opts the optional parameters
85
+ # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
86
+ # @option opts [Integer] :page Page number
87
+ # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
88
+ # @return [Array<Variable>]
89
+ describe 'variables_list test' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ end
@@ -44,6 +44,18 @@ describe 'InvitationCreateParameters' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "space_ids"' 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 "default_locale_codes"' 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
+
47
59
  describe 'test attribute "permissions"' do
48
60
  it 'should work' do
49
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -56,12 +56,24 @@ describe 'Invitation' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "default_locale_codes"' 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
  describe 'test attribute "permissions"' do
60
66
  it 'should work' do
61
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
68
  end
63
69
  end
64
70
 
71
+ describe 'test attribute "locale_ids"' 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
+
65
77
  describe 'test attribute "created_at"' do
66
78
  it 'should work' do
67
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -80,4 +92,16 @@ describe 'Invitation' do
80
92
  end
81
93
  end
82
94
 
95
+ describe 'test attribute "spaces"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "project_role"' 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
+
83
107
  end
@@ -38,6 +38,18 @@ describe 'InvitationUpdateParameters' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "space_ids"' 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 "default_locale_codes"' 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
+
41
53
  describe 'test attribute "permissions"' do
42
54
  it 'should work' do
43
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,35 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::InvitationUpdateSettingsParameters
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'InvitationUpdateSettingsParameters' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::InvitationUpdateSettingsParameters.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of InvitationUpdateSettingsParameters' do
19
+ it 'should create an instance of InvitationUpdateSettingsParameters' do
20
+ expect(@instance).to be_instance_of(Phrase::InvitationUpdateSettingsParameters)
21
+ end
22
+ end
23
+ describe 'test attribute "project_role"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "locale_ids"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ end
@@ -44,4 +44,10 @@ describe 'JobLocale' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "completed"' 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
+
47
53
  end
@@ -0,0 +1,35 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::MemberProjectDetailProjectRoles
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'MemberProjectDetailProjectRoles' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::MemberProjectDetailProjectRoles.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of MemberProjectDetailProjectRoles' do
19
+ it 'should create an instance of MemberProjectDetailProjectRoles' do
20
+ expect(@instance).to be_instance_of(Phrase::MemberProjectDetailProjectRoles)
21
+ end
22
+ end
23
+ describe 'test attribute "project_id"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "role"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ end
@@ -0,0 +1,83 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::MemberProjectDetail
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'MemberProjectDetail' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::MemberProjectDetail.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of MemberProjectDetail' do
19
+ it 'should create an instance of MemberProjectDetail' do
20
+ expect(@instance).to be_instance_of(Phrase::MemberProjectDetail)
21
+ end
22
+ end
23
+ describe 'test attribute "id"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "email"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ describe 'test attribute "username"' 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 "role"' 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 "projects"' 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 "permissions"' 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 "locale_ids"' 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 "default_locale_codes"' 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 "spaces"' 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
+ describe 'test attribute "project_roles"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ end
@@ -0,0 +1,53 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::MemberSpaces
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'MemberSpaces' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::MemberSpaces.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of MemberSpaces' do
19
+ it 'should create an instance of MemberSpaces' do
20
+ expect(@instance).to be_instance_of(Phrase::MemberSpaces)
21
+ end
22
+ end
23
+ describe 'test attribute "id"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "name"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ describe 'test attribute "created_at"' 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 "updated_at"' 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 "projects_count"' 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
+ end