jiralicious 0.4.3 → 0.5.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.
- data/.document +5 -5
- data/.gitignore +11 -11
- data/.rspec +1 -1
- data/.ruby-gemset +1 -1
- data/.travis.yml +10 -10
- data/Gemfile +4 -4
- data/LICENSE +22 -22
- data/README.md +99 -94
- data/Rakefile +16 -16
- data/gemfiles/newest.gemfile +3 -3
- data/gemfiles/oldest.gemfile +6 -6
- data/jiralicious.gemspec +37 -37
- data/lib/jiralicious.rb +2 -0
- data/lib/jiralicious/base.rb +226 -226
- data/lib/jiralicious/component.rb +103 -0
- data/lib/jiralicious/custom_field_option.rb +45 -45
- data/lib/jiralicious/errors.rb +27 -27
- data/lib/jiralicious/field.rb +58 -58
- data/lib/jiralicious/issue/fields.rb +197 -197
- data/lib/jiralicious/issue/watchers.rb +92 -92
- data/lib/jiralicious/project.rb +116 -64
- data/lib/jiralicious/session.rb +61 -61
- data/lib/jiralicious/version.rb +4 -4
- data/lib/jiralicious/versions.rb +150 -0
- data/spec/components_spec.rb +74 -0
- data/spec/configuration_spec.rb +41 -41
- data/spec/field_parser_spec.rb +73 -73
- data/spec/fixtures/avatar.json +6 -6
- data/spec/fixtures/avatar_custom.json +15 -15
- data/spec/fixtures/avatar_list.json +15 -15
- data/spec/fixtures/avatar_temp.json +6 -6
- data/spec/fixtures/comment_single.json +28 -28
- data/spec/fixtures/component.json +39 -0
- data/spec/fixtures/component_ric.json +4 -0
- data/spec/fixtures/component_updated.json +39 -0
- data/spec/fixtures/jira.yml +7 -7
- data/spec/fixtures/project_componets.json +80 -0
- data/spec/fixtures/project_versions.json +22 -0
- data/spec/fixtures/test.json +23 -23
- data/spec/fixtures/version.json +11 -0
- data/spec/fixtures/version_ric.json +5 -0
- data/spec/fixtures/version_uic.json +4 -0
- data/spec/fixtures/version_updated.json +11 -0
- data/spec/issue_spec.rb +385 -385
- data/spec/jiralicious_spec.rb +16 -16
- data/spec/project_spec.rb +25 -2
- data/spec/search_result_spec.rb +54 -54
- data/spec/support/configuration.rb +11 -11
- data/spec/support/http.rb +147 -111
- data/spec/versions_spec.rb +84 -0
- metadata +189 -170
- checksums.yaml +0 -7
@@ -0,0 +1,84 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require "spec_helper"
|
3
|
+
|
4
|
+
describe Jiralicious, "Project Versions Class: " do
|
5
|
+
|
6
|
+
before :each do
|
7
|
+
Jiralicious.configure do |config|
|
8
|
+
config.username = "jstewart"
|
9
|
+
config.password = "topsecret"
|
10
|
+
config.uri = "http://jstewart:topsecret@localhost"
|
11
|
+
config.auth_type = :basic
|
12
|
+
config.api_version = "latest"
|
13
|
+
end
|
14
|
+
|
15
|
+
FakeWeb.register_uri(:post,
|
16
|
+
"#{Jiralicious.rest_path}/version/",
|
17
|
+
:status => "200",
|
18
|
+
:body => version_json)
|
19
|
+
FakeWeb.register_uri(:get,
|
20
|
+
"#{Jiralicious.rest_path}/version/10000",
|
21
|
+
:status => "200",
|
22
|
+
:body => version_json)
|
23
|
+
FakeWeb.register_uri(:delete,
|
24
|
+
"#{Jiralicious.rest_path}/version/10000",
|
25
|
+
:status => "200",
|
26
|
+
:body => nil)
|
27
|
+
FakeWeb.register_uri(:put,
|
28
|
+
"#{Jiralicious.rest_path}/version/10000",
|
29
|
+
:status => "200",
|
30
|
+
:body => version_updated_json)
|
31
|
+
FakeWeb.register_uri(:get,
|
32
|
+
"#{Jiralicious.rest_path}/version/10000/relatedIssueCounts",
|
33
|
+
:status => "200",
|
34
|
+
:body => version_ric_json)
|
35
|
+
FakeWeb.register_uri(:get,
|
36
|
+
"#{Jiralicious.rest_path}/version/10000/unresolvedIssueCount",
|
37
|
+
:status => "200",
|
38
|
+
:body => version_uic_json)
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
it "find a version" do
|
43
|
+
version = Jiralicious::Version.find(10000)
|
44
|
+
version.version_key.should == "10000"
|
45
|
+
version.name.should == "Version 1"
|
46
|
+
version.userReleaseDate.should == "5/Jul/2010"
|
47
|
+
version.archived.should == false
|
48
|
+
end
|
49
|
+
|
50
|
+
it "create a new version" do
|
51
|
+
version = Jiralicious::Version.create({:description=>"An excellent version", :name=>"Version 1", :archived=>false, :released=>true,:releaseDate=>"2010-07-05", :project=>"DEMO"})
|
52
|
+
version.version_key.should == "10000"
|
53
|
+
version.name.should == "Version 1"
|
54
|
+
version.userReleaseDate.should == "5/Jul/2010"
|
55
|
+
version.archived.should == false
|
56
|
+
end
|
57
|
+
|
58
|
+
it "update a version" do
|
59
|
+
version = Jiralicious::Version.update(10000, {:name=>"Version 2", :description=>"This is a JIRA version. Updated Version.", :project=>"DEMO"})
|
60
|
+
version.version_key.should == "10000"
|
61
|
+
version.name.should == "Version 2"
|
62
|
+
version.userReleaseDate.should == "5/Jul/2010"
|
63
|
+
version.archived.should == false
|
64
|
+
version.description.should == "This is a JIRA version. Updated Version."
|
65
|
+
end
|
66
|
+
|
67
|
+
it "delete a version" do
|
68
|
+
version = Jiralicious::Version.remove(10000)
|
69
|
+
version.should == nil
|
70
|
+
end
|
71
|
+
|
72
|
+
it "version related issue count" do
|
73
|
+
version = Jiralicious::Version.find(10000)
|
74
|
+
count = version.related_issue_counts
|
75
|
+
count.issuesFixedCount.should == 23
|
76
|
+
count.issuesAffectedCount.should == 101
|
77
|
+
end
|
78
|
+
|
79
|
+
it "version unresolved issue count" do
|
80
|
+
version = Jiralicious::Version.find(10000)
|
81
|
+
count = version.unresolved_issue_count
|
82
|
+
count.should == 23
|
83
|
+
end
|
84
|
+
end
|
metadata
CHANGED
@@ -1,153 +1,190 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: jiralicious
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 11
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
version: 0.5.0
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Jason Stewart
|
8
14
|
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
17
|
+
|
18
|
+
date: 2014-06-26 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
14
21
|
name: crack
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.1.8
|
20
|
-
type: :runtime
|
21
22
|
prerelease: false
|
22
|
-
|
23
|
-
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
24
26
|
- - ~>
|
25
|
-
- !ruby/object:Gem::Version
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 11
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
- 1
|
32
|
+
- 8
|
26
33
|
version: 0.1.8
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: httparty
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0.10'
|
34
34
|
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: httparty
|
35
38
|
prerelease: false
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 31
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
- 10
|
48
|
+
version: "0.10"
|
49
|
+
- - <
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
hash: 47
|
52
|
+
segments:
|
53
|
+
- 0
|
54
|
+
- 12
|
55
|
+
- 0
|
56
|
+
version: 0.12.0
|
48
57
|
type: :runtime
|
58
|
+
version_requirements: *id002
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: hashie
|
49
61
|
prerelease: false
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '1.6'
|
62
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
hash: 13
|
68
|
+
segments:
|
69
|
+
- 1
|
70
|
+
- 1
|
71
|
+
version: "1.1"
|
62
72
|
- - <
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 7
|
75
|
+
segments:
|
76
|
+
- 3
|
77
|
+
- 0
|
78
|
+
- 0
|
79
|
+
version: 3.0.0
|
65
80
|
type: :runtime
|
81
|
+
version_requirements: *id003
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: json
|
66
84
|
prerelease: false
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
85
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
91
|
+
segments:
|
92
|
+
- 1
|
93
|
+
- 6
|
94
|
+
version: "1.6"
|
72
95
|
- - <
|
73
|
-
- !ruby/object:Gem::Version
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
hash: 51
|
98
|
+
segments:
|
99
|
+
- 1
|
100
|
+
- 9
|
101
|
+
- 0
|
74
102
|
version: 1.9.0
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: oauth
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - '>='
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '0'
|
82
103
|
type: :runtime
|
104
|
+
version_requirements: *id004
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: oauth
|
83
107
|
prerelease: false
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
- - '>='
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '0'
|
108
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
hash: 3
|
114
|
+
segments:
|
115
|
+
- 0
|
116
|
+
version: "0"
|
96
117
|
type: :runtime
|
118
|
+
version_requirements: *id005
|
119
|
+
- !ruby/object:Gem::Dependency
|
120
|
+
name: nokogiri
|
97
121
|
prerelease: false
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
122
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
123
|
+
none: false
|
124
|
+
requirements:
|
125
|
+
- - <
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
hash: 3
|
128
|
+
segments:
|
129
|
+
- 1
|
130
|
+
- 6
|
131
|
+
version: "1.6"
|
132
|
+
type: :runtime
|
133
|
+
version_requirements: *id006
|
134
|
+
- !ruby/object:Gem::Dependency
|
104
135
|
name: rspec
|
105
|
-
requirement: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - ~>
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '2.6'
|
110
|
-
type: :development
|
111
136
|
prerelease: false
|
112
|
-
|
113
|
-
|
137
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
139
|
+
requirements:
|
114
140
|
- - ~>
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
- - '>='
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: '0'
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
hash: 15
|
143
|
+
segments:
|
144
|
+
- 2
|
145
|
+
- 6
|
146
|
+
version: "2.6"
|
124
147
|
type: :development
|
148
|
+
version_requirements: *id007
|
149
|
+
- !ruby/object:Gem::Dependency
|
150
|
+
name: rake
|
125
151
|
prerelease: false
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
- - ~>
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: 1.3.0
|
152
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
hash: 3
|
158
|
+
segments:
|
159
|
+
- 0
|
160
|
+
version: "0"
|
138
161
|
type: :development
|
162
|
+
version_requirements: *id008
|
163
|
+
- !ruby/object:Gem::Dependency
|
164
|
+
name: fakeweb
|
139
165
|
prerelease: false
|
140
|
-
|
141
|
-
|
166
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
167
|
+
none: false
|
168
|
+
requirements:
|
142
169
|
- - ~>
|
143
|
-
- !ruby/object:Gem::Version
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
hash: 27
|
172
|
+
segments:
|
173
|
+
- 1
|
174
|
+
- 3
|
175
|
+
- 0
|
144
176
|
version: 1.3.0
|
177
|
+
type: :development
|
178
|
+
version_requirements: *id009
|
145
179
|
description: A Ruby library for interacting with JIRA's REST API
|
146
180
|
email: jstewart@fusionary.com
|
147
181
|
executables: []
|
182
|
+
|
148
183
|
extensions: []
|
184
|
+
|
149
185
|
extra_rdoc_files: []
|
150
|
-
|
186
|
+
|
187
|
+
files:
|
151
188
|
- .document
|
152
189
|
- .gitignore
|
153
190
|
- .rspec
|
@@ -164,6 +201,7 @@ files:
|
|
164
201
|
- lib/jiralicious/avatar.rb
|
165
202
|
- lib/jiralicious/base.rb
|
166
203
|
- lib/jiralicious/basic_session.rb
|
204
|
+
- lib/jiralicious/component.rb
|
167
205
|
- lib/jiralicious/configuration.rb
|
168
206
|
- lib/jiralicious/cookie_session.rb
|
169
207
|
- lib/jiralicious/custom_field_option.rb
|
@@ -184,9 +222,11 @@ files:
|
|
184
222
|
- lib/jiralicious/user.rb
|
185
223
|
- lib/jiralicious/user/avatar.rb
|
186
224
|
- lib/jiralicious/version.rb
|
225
|
+
- lib/jiralicious/versions.rb
|
187
226
|
- spec/avatar_spec.rb
|
188
227
|
- spec/basic_session_spec.rb
|
189
228
|
- spec/comment_spec.rb
|
229
|
+
- spec/components_spec.rb
|
190
230
|
- spec/configuration_spec.rb
|
191
231
|
- spec/field_parser_spec.rb
|
192
232
|
- spec/fixtures/avatar.json
|
@@ -196,6 +236,9 @@ files:
|
|
196
236
|
- spec/fixtures/avatar_test.png
|
197
237
|
- spec/fixtures/comment.json
|
198
238
|
- spec/fixtures/comment_single.json
|
239
|
+
- spec/fixtures/component.json
|
240
|
+
- spec/fixtures/component_ric.json
|
241
|
+
- spec/fixtures/component_updated.json
|
199
242
|
- spec/fixtures/issue.json
|
200
243
|
- spec/fixtures/issue_2.json
|
201
244
|
- spec/fixtures/issue_create.json
|
@@ -204,7 +247,9 @@ files:
|
|
204
247
|
- spec/fixtures/issue_update.json
|
205
248
|
- spec/fixtures/jira.yml
|
206
249
|
- spec/fixtures/project.json
|
250
|
+
- spec/fixtures/project_componets.json
|
207
251
|
- spec/fixtures/project_issue_list.json
|
252
|
+
- spec/fixtures/project_versions.json
|
208
253
|
- spec/fixtures/projects.json
|
209
254
|
- spec/fixtures/search.json
|
210
255
|
- spec/fixtures/test.json
|
@@ -212,6 +257,10 @@ files:
|
|
212
257
|
- spec/fixtures/user.json
|
213
258
|
- spec/fixtures/user_array.json
|
214
259
|
- spec/fixtures/user_picker.json
|
260
|
+
- spec/fixtures/version.json
|
261
|
+
- spec/fixtures/version_ric.json
|
262
|
+
- spec/fixtures/version_uic.json
|
263
|
+
- spec/fixtures/version_updated.json
|
215
264
|
- spec/fixtures/watchers.json
|
216
265
|
- spec/issue_spec.rb
|
217
266
|
- spec/jiralicious_spec.rb
|
@@ -224,70 +273,40 @@ files:
|
|
224
273
|
- spec/support/http.rb
|
225
274
|
- spec/user_avatar_spec.rb
|
226
275
|
- spec/user_spec.rb
|
276
|
+
- spec/versions_spec.rb
|
227
277
|
- spec/watchers_spec.rb
|
228
278
|
homepage: http://github.com/jstewart/jiralicious
|
229
|
-
licenses:
|
279
|
+
licenses:
|
230
280
|
- MIT
|
231
|
-
metadata: {}
|
232
281
|
post_install_message:
|
233
282
|
rdoc_options: []
|
234
|
-
|
283
|
+
|
284
|
+
require_paths:
|
235
285
|
- lib
|
236
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
286
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
287
|
+
none: false
|
288
|
+
requirements:
|
289
|
+
- - ">="
|
290
|
+
- !ruby/object:Gem::Version
|
291
|
+
hash: 3
|
292
|
+
segments:
|
293
|
+
- 0
|
294
|
+
version: "0"
|
295
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
296
|
+
none: false
|
297
|
+
requirements:
|
298
|
+
- - ">="
|
299
|
+
- !ruby/object:Gem::Version
|
300
|
+
hash: 3
|
301
|
+
segments:
|
302
|
+
- 0
|
303
|
+
version: "0"
|
246
304
|
requirements: []
|
305
|
+
|
247
306
|
rubyforge_project:
|
248
|
-
rubygems_version:
|
307
|
+
rubygems_version: 1.8.24
|
249
308
|
signing_key:
|
250
|
-
specification_version:
|
309
|
+
specification_version: 3
|
251
310
|
summary: A Ruby library for interacting with JIRA's REST API
|
252
|
-
test_files:
|
253
|
-
|
254
|
-
- spec/basic_session_spec.rb
|
255
|
-
- spec/comment_spec.rb
|
256
|
-
- spec/configuration_spec.rb
|
257
|
-
- spec/field_parser_spec.rb
|
258
|
-
- spec/fixtures/avatar.json
|
259
|
-
- spec/fixtures/avatar_custom.json
|
260
|
-
- spec/fixtures/avatar_list.json
|
261
|
-
- spec/fixtures/avatar_temp.json
|
262
|
-
- spec/fixtures/avatar_test.png
|
263
|
-
- spec/fixtures/comment.json
|
264
|
-
- spec/fixtures/comment_single.json
|
265
|
-
- spec/fixtures/issue.json
|
266
|
-
- spec/fixtures/issue_2.json
|
267
|
-
- spec/fixtures/issue_create.json
|
268
|
-
- spec/fixtures/issue_createmeta.json
|
269
|
-
- spec/fixtures/issue_editmeta.json
|
270
|
-
- spec/fixtures/issue_update.json
|
271
|
-
- spec/fixtures/jira.yml
|
272
|
-
- spec/fixtures/project.json
|
273
|
-
- spec/fixtures/project_issue_list.json
|
274
|
-
- spec/fixtures/projects.json
|
275
|
-
- spec/fixtures/search.json
|
276
|
-
- spec/fixtures/test.json
|
277
|
-
- spec/fixtures/transitions.json
|
278
|
-
- spec/fixtures/user.json
|
279
|
-
- spec/fixtures/user_array.json
|
280
|
-
- spec/fixtures/user_picker.json
|
281
|
-
- spec/fixtures/watchers.json
|
282
|
-
- spec/issue_spec.rb
|
283
|
-
- spec/jiralicious_spec.rb
|
284
|
-
- spec/project_avatar_spec.rb
|
285
|
-
- spec/project_spec.rb
|
286
|
-
- spec/search_result_spec.rb
|
287
|
-
- spec/search_spec.rb
|
288
|
-
- spec/spec_helper.rb
|
289
|
-
- spec/support/configuration.rb
|
290
|
-
- spec/support/http.rb
|
291
|
-
- spec/user_avatar_spec.rb
|
292
|
-
- spec/user_spec.rb
|
293
|
-
- spec/watchers_spec.rb
|
311
|
+
test_files: []
|
312
|
+
|