git-contest 0.2.4 → 0.2.5

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 (52) hide show
  1. checksums.yaml +8 -8
  2. data/.travis.yml +21 -3
  3. data/README.md +5 -0
  4. data/Rakefile +8 -0
  5. data/appveyor.yml +21 -0
  6. data/bin/git-contest +4 -33
  7. data/bin/git-contest-config +4 -241
  8. data/bin/git-contest-finish +4 -151
  9. data/bin/git-contest-init +4 -65
  10. data/bin/git-contest-list +4 -64
  11. data/bin/git-contest-rebase +4 -64
  12. data/bin/git-contest-start +4 -57
  13. data/bin/git-contest-submit +4 -183
  14. data/git-contest.gemspec +2 -1
  15. data/lib/contest/driver/base.rb +7 -4
  16. data/lib/git/contest/command_line.rb +10 -0
  17. data/lib/git/contest/command_line/command.rb +117 -0
  18. data/lib/git/contest/command_line/main_command.rb +56 -0
  19. data/lib/git/contest/command_line/sub_commands.rb +35 -0
  20. data/lib/git/contest/command_line/sub_commands/config_command.rb +258 -0
  21. data/lib/git/contest/command_line/sub_commands/finish_command.rb +161 -0
  22. data/lib/git/contest/command_line/sub_commands/init_command.rb +79 -0
  23. data/lib/git/contest/command_line/sub_commands/list_command.rb +89 -0
  24. data/lib/git/contest/command_line/sub_commands/rebase_command.rb +87 -0
  25. data/lib/git/contest/command_line/sub_commands/start_command.rb +77 -0
  26. data/lib/git/contest/command_line/sub_commands/submit_command.rb +220 -0
  27. data/lib/git/contest/common.rb +6 -6
  28. data/lib/git/contest/git.rb +160 -156
  29. data/lib/git/contest/version.rb +1 -1
  30. data/spec/command/t004_git_contest_submit_spec.rb +254 -0
  31. data/spec/command/t005_git_contest_branching_spec.rb +90 -0
  32. data/spec/command/t007_git_contest_start_spec.rb +95 -0
  33. data/spec/command/t008_git_contest_finish_spec.rb +171 -0
  34. data/spec/command/t009_git_contest_init_spec.rb +85 -0
  35. data/spec/command/t012_git_contest_list_spec.rb +123 -0
  36. data/spec/command/t013_git_contest_config_spec.rb +186 -0
  37. data/spec/{lib/contest/driver → contest_driver}/t001_aizu_online_judge_spec.rb +1 -1
  38. data/spec/{lib/contest/driver → contest_driver}/t002_codeforces_spec.rb +1 -1
  39. data/spec/{lib/contest/driver → contest_driver}/t003_uva_online_judge_spec.rb +1 -1
  40. data/spec/{lib/contest/driver → contest_driver}/t010_kattis_spec.rb +1 -1
  41. data/spec/{lib/contest/driver → contest_driver}/t011_utils_spec.rb +0 -0
  42. data/spec/spec_helper.rb +18 -12
  43. data/spec/t006_config_spec.rb +37 -31
  44. metadata +57 -33
  45. data/spec/bin/t004_git_contest_submit_spec.rb +0 -223
  46. data/spec/bin/t005_git_contest_branching_spec.rb +0 -70
  47. data/spec/bin/t007_git_contest_start_spec.rb +0 -88
  48. data/spec/bin/t008_git_contest_finish_spec.rb +0 -162
  49. data/spec/bin/t009_git_contest_init_spec.rb +0 -55
  50. data/spec/bin/t012_git_contest_list_spec.rb +0 -99
  51. data/spec/bin/t013_git_contest_config_spec.rb +0 -149
  52. data/spec/spec_list.txt +0 -1
@@ -4,7 +4,7 @@ describe "T001: AizuOnlineJudge Driver" do
4
4
  before do
5
5
  # setup driver
6
6
  @driver = Contest::Driver::AizuOnlineJudgeDriver.new
7
- @driver.stub(:sleep).and_return(0)
7
+ allow(@driver).to receive(:sleep).and_return(0)
8
8
  ENV['GIT_CONTEST_CONFIG'] = get_path('/mock/t001/config.yml')
9
9
  init
10
10
 
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe "T002: Codeforces Driver" do
4
4
  before(:each) do
5
5
  @driver = Contest::Driver::CodeforcesDriver.new
6
- @driver.stub(:sleep).and_return(0)
6
+ allow(@driver).to receive(:sleep).and_return(0)
7
7
  end
8
8
 
9
9
  context "A001: #get_status_wait" do
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe "T003: UvaOnlineJudge Driver" do
4
4
  before(:each) do
5
5
  @driver = Contest::Driver::UvaOnlineJudgeDriver.new
6
- @driver.stub(:sleep).and_return(0)
6
+ allow(@driver).to receive(:sleep).and_return(0)
7
7
  end
8
8
 
9
9
  context "A001: #get_submission_id" do
@@ -3,7 +3,7 @@ require "spec_helper"
3
3
  describe "T010: Kattis Driver" do
4
4
  before do
5
5
  @driver = Contest::Driver::KattisDriver.new
6
- @driver.stub(:sleep).and_return(0)
6
+ allow(@driver).to receive(:sleep).and_return(0)
7
7
  end
8
8
 
9
9
  context "A001: #get_submission_id" do
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,14 @@
1
+ require "bundler/setup"
2
+
3
+ if ENV['TRAVIS'] === "true"
4
+ require "codeclimate-test-reporter"
5
+ CodeClimate::TestReporter.start
6
+ end
7
+
1
8
  require 'webmock'
2
9
 
3
10
  $:.unshift File.expand_path('../../lib', __FILE__)
11
+ require "git/contest/command_line"
4
12
  require 'git/contest/common'
5
13
  require 'contest/driver'
6
14
 
@@ -10,7 +18,7 @@ module SpecHelpers
10
18
  end
11
19
 
12
20
  def get_path path
13
- File.expand_path(File.dirname(__FILE__) + path)
21
+ File.expand_path(File.join File.dirname(__FILE__), path)
14
22
  end
15
23
 
16
24
  def bin_path path
@@ -33,14 +41,6 @@ module SpecHelpers
33
41
  ENV['GIT_CONTEST_DEBUG'] = 'ON'
34
42
  end
35
43
 
36
- def bin_exec(args, input=nil)
37
- puts "Commmand: #{bin_path('git-contest')} #{args}" if ENV['GIT_CONTEST_DEBUG'] == 'ON'
38
- pipe_cmd = ""
39
- pipe_cmd = "printf \" #{input}\" | " unless input.nil?
40
- ret = `#{pipe_cmd}#{bin_path('git-contest')} #{args} 2>&1`
41
- ret
42
- end
43
-
44
44
  def set_git_contest_config(body)
45
45
  ENV['GIT_CONTEST_CONFIG'] = "#{@temp_dir}/home/config.yml"
46
46
  File.open ENV['GIT_CONTEST_CONFIG'], "w" do |file|
@@ -52,12 +52,18 @@ end
52
52
  RSpec.configure do |config|
53
53
  config.include SpecHelpers
54
54
  config.before :each do
55
- WebMock.disable_net_connect!
56
- @temp_dir = `mktemp -d /tmp/XXXXXXXXXXXXX`.strip
57
- Dir.chdir "#{@temp_dir}"
55
+ WebMock.disable_net_connect!(:allow => "codeclimate.com")
56
+ @temp_dir = Dir.mktmpdir
57
+ Dir.chdir @temp_dir
58
58
  Dir.mkdir "home"
59
59
  init_env
60
60
  end
61
+ config.before :suite do
62
+ $saved_pwd = FileUtils.pwd
63
+ end
64
+ config.after :suite do
65
+ FileUtils.cd $saved_pwd
66
+ end
61
67
  config.order = 'random'
62
68
  end
63
69
 
@@ -1,13 +1,22 @@
1
1
  require "spec_helper"
2
2
 
3
3
  describe "T006: Config Test" do
4
+
5
+ def call_main(args)
6
+ cli = CommandLine::MainCommand.new(args)
7
+ cli.init
8
+ cli
9
+ end
10
+
4
11
  context "A001: submit_rules" do
12
+
5
13
  context "B001: commit_message" do
14
+
6
15
  before do
7
16
  File.open "main.d", "w" do |file|
8
17
  file.write "ac-code"
9
18
  end
10
- bin_exec "init --defaults"
19
+ expect { call_main(["init", "--defaults"]).run }.to output(/.*/).to_stdout
11
20
  end
12
21
 
13
22
  it "001: ${site} ${problem-id}: ${status}" do
@@ -20,8 +29,8 @@ sites:
20
29
  user: dummy
21
30
  password: dummy
22
31
  EOF
23
- bin_exec "submit test_dummy -c 100 -p A"
24
- ret1 = git_do "log --oneline"
32
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
33
+ ret1 = Git.do "log --oneline"
25
34
  expect(ret1).to include 'Dummy 100A: Accepted'
26
35
  end
27
36
 
@@ -35,8 +44,8 @@ sites:
35
44
  user: dummy
36
45
  password: dummy
37
46
  EOF
38
- bin_exec "submit test_dummy -c 100 -p A"
39
- ret1 = git_do "log --oneline"
47
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
48
+ ret1 = Git.do "log --oneline"
40
49
  expect(ret1).to include 'Dummy-100A-Accepted'
41
50
  end
42
51
 
@@ -50,8 +59,8 @@ sites:
50
59
  user: dummy
51
60
  password: dummy
52
61
  EOF
53
- bin_exec "submit test_dummy -c 100 -p A"
54
- ret1 = git_do "log --oneline"
62
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
63
+ ret1 = Git.do "log --oneline"
55
64
  expect(ret1).to include 'Accepted-Dummy'
56
65
  end
57
66
 
@@ -68,7 +77,7 @@ EOF
68
77
  File.open "tle.go", "w" do |file|
69
78
  file.write "tle-code"
70
79
  end
71
- bin_exec "init --defaults"
80
+ expect { call_main(["init", "--defaults"]).run }.to output(/.*/).to_stdout
72
81
  end
73
82
 
74
83
  it "001: ac.*" do
@@ -81,12 +90,12 @@ sites:
81
90
  user: dummy
82
91
  password: dummy
83
92
  EOF
84
- bin_exec "submit test_dummy -c 100 -p A"
93
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
85
94
 
86
- ret1 = git_do "log --oneline"
95
+ ret1 = Git.do "log --oneline"
87
96
  expect(ret1).to include 'Dummy 100A: Accepted'
88
97
 
89
- ret_ls1 = git_do "ls-files"
98
+ ret_ls1 = Git.do "ls-files"
90
99
  expect(ret_ls1).to include 'ac.cpp'
91
100
  end
92
101
 
@@ -100,12 +109,12 @@ sites:
100
109
  user: dummy
101
110
  password: dummy
102
111
  EOF
103
- bin_exec "submit test_dummy -c 100 -p A"
112
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
104
113
 
105
- ret1 = git_do "log --oneline"
114
+ ret1 = Git.do "log --oneline"
106
115
  expect(ret1).to include 'Dummy 100A: Wrong Answer'
107
116
 
108
- ret_ls1 = git_do "ls-files"
117
+ ret_ls1 = Git.do "ls-files"
109
118
  expect(ret_ls1).to include 'wa.d'
110
119
  end
111
120
 
@@ -119,11 +128,11 @@ sites:
119
128
  user: dummy
120
129
  password: dummy
121
130
  EOF
122
- bin_exec "submit test_dummy -c 100 -p A"
123
- ret1 = git_do "log --oneline"
131
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
132
+ ret1 = Git.do "log --oneline"
124
133
  expect(ret1).to include 'Dummy 100A: Time Limit Exceeded'
125
134
 
126
- ret_ls1 = git_do "ls-files"
135
+ ret_ls1 = Git.do "ls-files"
127
136
  expect(ret_ls1).to include 'tle.go'
128
137
  end
129
138
  end
@@ -142,7 +151,7 @@ EOF
142
151
  File.open "input2.txt", "w" do |file|
143
152
  file.write "test2"
144
153
  end
145
- bin_exec "init --defaults"
154
+ expect { call_main(["init", "--defaults"]).run }.to output(/.*/).to_stdout
146
155
  end
147
156
 
148
157
  it "001: test*.cpp input1.txt" do
@@ -156,8 +165,8 @@ sites:
156
165
  user: dummy
157
166
  password: dummy
158
167
  EOF
159
- bin_exec "submit test_dummy -c 100 -p A"
160
- ret1 = git_do "ls-files"
168
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
169
+ ret1 = Git.do "ls-files"
161
170
  expect(ret1).to include "test1.cpp"
162
171
  expect(ret1).to include "input1.txt"
163
172
  expect(ret1).not_to include "test2.c"
@@ -175,8 +184,8 @@ sites:
175
184
  user: dummy
176
185
  password: dummy
177
186
  EOF
178
- bin_exec "submit test_dummy -c 100 -p A"
179
- ret1 = git_do "ls-files"
187
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
188
+ ret1 = Git.do "ls-files"
180
189
  expect(ret1).not_to include "test1.cpp"
181
190
  expect(ret1).not_to include "input1.txt"
182
191
  expect(ret1).to include "test2.c"
@@ -194,8 +203,8 @@ sites:
194
203
  user: dummy
195
204
  password: dummy
196
205
  EOF
197
- bin_exec "submit test_dummy -c 100 -p A"
198
- ret1 = git_do "ls-files"
206
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A"]).run }.to output(/.*/).to_stdout
207
+ ret1 = Git.do "ls-files"
199
208
  expect(ret1).to include "test1.cpp"
200
209
  expect(ret1).to include "input1.txt"
201
210
  expect(ret1).to include "test2.c"
@@ -227,8 +236,7 @@ sites:
227
236
  password: dummy
228
237
  EOF
229
238
 
230
- ret1 = bin_exec "submit test_dummy -c 100 -p A -s test1.dummy"
231
- expect(ret1).not_to include "unknown language"
239
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A", "-s", "test1.dummy"]).run }.to_not output(/unknown language/).to_stdout
232
240
  end
233
241
 
234
242
  it "cpp -> dummy" do
@@ -243,15 +251,14 @@ sites:
243
251
  password: dummy
244
252
  EOF
245
253
 
246
- ret1 = bin_exec "submit test_dummy -c 100 -p A -s test2.cpp"
247
- expect(ret1).to include "unknown language"
254
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A", "-s", "test2.cpp"]).run }.to output(/unknown language/).to_stderr.and raise_error SystemExit
248
255
  end
249
256
 
250
257
  it "cpp -> cpp11" do
251
258
  set_git_contest_config <<EOF
252
259
  file:
253
260
  ext:
254
- cpp: dummy
261
+ cpp: cpp11
255
262
  sites:
256
263
  test_dummy:
257
264
  driver: dummy
@@ -259,8 +266,7 @@ sites:
259
266
  password: dummy
260
267
  EOF
261
268
 
262
- ret1 = bin_exec "submit test_dummy -c 100 -p A -s test2.cpp"
263
- expect(ret1).to include "unknown language"
269
+ expect { call_main(["submit", "test_dummy", "-c", "100", "-p", "A", "-s", "test2.cpp"]).run }.to output(/unknown language/).to_stderr.and raise_error SystemExit
264
270
  end
265
271
  end
266
272
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-contest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroyuki Sano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-04 00:00:00.000000000 Z
11
+ date: 2015-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mechanize
@@ -84,16 +84,16 @@ dependencies:
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - ! '>='
88
88
  - !ruby/object:Gem::Version
89
- version: '1.3'
89
+ version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - ! '>='
95
95
  - !ruby/object:Gem::Version
96
- version: '1.3'
96
+ version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rake
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -150,6 +150,20 @@ dependencies:
150
150
  - - ! '>='
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: codeclimate-test-reporter
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ! '>='
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
153
167
  description: The Git Extension for online judges (Codeforces, etc...)
154
168
  email:
155
169
  - sh19910711@gmail.com
@@ -172,6 +186,7 @@ files:
172
186
  - LICENSE.txt
173
187
  - README.md
174
188
  - Rakefile
189
+ - appveyor.yml
175
190
  - bin/git-contest
176
191
  - bin/git-contest-config
177
192
  - bin/git-contest-finish
@@ -190,22 +205,33 @@ files:
190
205
  - lib/contest/driver/kattis_driver.rb
191
206
  - lib/contest/driver/uva_online_judge_driver.rb
192
207
  - lib/git/contest.rb
208
+ - lib/git/contest/command_line.rb
209
+ - lib/git/contest/command_line/command.rb
210
+ - lib/git/contest/command_line/main_command.rb
211
+ - lib/git/contest/command_line/sub_commands.rb
212
+ - lib/git/contest/command_line/sub_commands/config_command.rb
213
+ - lib/git/contest/command_line/sub_commands/finish_command.rb
214
+ - lib/git/contest/command_line/sub_commands/init_command.rb
215
+ - lib/git/contest/command_line/sub_commands/list_command.rb
216
+ - lib/git/contest/command_line/sub_commands/rebase_command.rb
217
+ - lib/git/contest/command_line/sub_commands/start_command.rb
218
+ - lib/git/contest/command_line/sub_commands/submit_command.rb
193
219
  - lib/git/contest/common.rb
194
220
  - lib/git/contest/git.rb
195
221
  - lib/git/contest/test.rb
196
222
  - lib/git/contest/version.rb
197
- - spec/bin/t004_git_contest_submit_spec.rb
198
- - spec/bin/t005_git_contest_branching_spec.rb
199
- - spec/bin/t007_git_contest_start_spec.rb
200
- - spec/bin/t008_git_contest_finish_spec.rb
201
- - spec/bin/t009_git_contest_init_spec.rb
202
- - spec/bin/t012_git_contest_list_spec.rb
203
- - spec/bin/t013_git_contest_config_spec.rb
204
- - spec/lib/contest/driver/t001_aizu_online_judge_spec.rb
205
- - spec/lib/contest/driver/t002_codeforces_spec.rb
206
- - spec/lib/contest/driver/t003_uva_online_judge_spec.rb
207
- - spec/lib/contest/driver/t010_kattis_spec.rb
208
- - spec/lib/contest/driver/t011_utils_spec.rb
223
+ - spec/command/t004_git_contest_submit_spec.rb
224
+ - spec/command/t005_git_contest_branching_spec.rb
225
+ - spec/command/t007_git_contest_start_spec.rb
226
+ - spec/command/t008_git_contest_finish_spec.rb
227
+ - spec/command/t009_git_contest_init_spec.rb
228
+ - spec/command/t012_git_contest_list_spec.rb
229
+ - spec/command/t013_git_contest_config_spec.rb
230
+ - spec/contest_driver/t001_aizu_online_judge_spec.rb
231
+ - spec/contest_driver/t002_codeforces_spec.rb
232
+ - spec/contest_driver/t003_uva_online_judge_spec.rb
233
+ - spec/contest_driver/t010_kattis_spec.rb
234
+ - spec/contest_driver/t011_utils_spec.rb
209
235
  - spec/mock/default_config/config.yml
210
236
  - spec/mock/default_config/plugins/dummy_driver.rb
211
237
  - spec/mock/t001/002.status_log.xml
@@ -233,7 +259,6 @@ files:
233
259
  - spec/mock/t010/user_submission_222222.html
234
260
  - spec/mock/t010/user_submissions.html
235
261
  - spec/spec_helper.rb
236
- - spec/spec_list.txt
237
262
  - spec/t006_config_spec.rb
238
263
  homepage: https://github.com/sh19910711/git-contest
239
264
  licenses:
@@ -255,23 +280,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
280
  version: '0'
256
281
  requirements: []
257
282
  rubyforge_project:
258
- rubygems_version: 2.4.2
283
+ rubygems_version: 2.4.5
259
284
  signing_key:
260
285
  specification_version: 4
261
286
  summary: The Git Extension for online judges (Codeforces, etc...)
262
287
  test_files:
263
- - spec/bin/t004_git_contest_submit_spec.rb
264
- - spec/bin/t005_git_contest_branching_spec.rb
265
- - spec/bin/t007_git_contest_start_spec.rb
266
- - spec/bin/t008_git_contest_finish_spec.rb
267
- - spec/bin/t009_git_contest_init_spec.rb
268
- - spec/bin/t012_git_contest_list_spec.rb
269
- - spec/bin/t013_git_contest_config_spec.rb
270
- - spec/lib/contest/driver/t001_aizu_online_judge_spec.rb
271
- - spec/lib/contest/driver/t002_codeforces_spec.rb
272
- - spec/lib/contest/driver/t003_uva_online_judge_spec.rb
273
- - spec/lib/contest/driver/t010_kattis_spec.rb
274
- - spec/lib/contest/driver/t011_utils_spec.rb
288
+ - spec/command/t004_git_contest_submit_spec.rb
289
+ - spec/command/t005_git_contest_branching_spec.rb
290
+ - spec/command/t007_git_contest_start_spec.rb
291
+ - spec/command/t008_git_contest_finish_spec.rb
292
+ - spec/command/t009_git_contest_init_spec.rb
293
+ - spec/command/t012_git_contest_list_spec.rb
294
+ - spec/command/t013_git_contest_config_spec.rb
295
+ - spec/contest_driver/t001_aizu_online_judge_spec.rb
296
+ - spec/contest_driver/t002_codeforces_spec.rb
297
+ - spec/contest_driver/t003_uva_online_judge_spec.rb
298
+ - spec/contest_driver/t010_kattis_spec.rb
299
+ - spec/contest_driver/t011_utils_spec.rb
275
300
  - spec/mock/default_config/config.yml
276
301
  - spec/mock/default_config/plugins/dummy_driver.rb
277
302
  - spec/mock/t001/002.status_log.xml
@@ -299,5 +324,4 @@ test_files:
299
324
  - spec/mock/t010/user_submission_222222.html
300
325
  - spec/mock/t010/user_submissions.html
301
326
  - spec/spec_helper.rb
302
- - spec/spec_list.txt
303
327
  - spec/t006_config_spec.rb