simplecov 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d4af948b77b779812e38aae3eaa154f6a280c910
4
- data.tar.gz: 80705587d23aeabb4a70eeb6a6e1ec0d1a8b7163
3
+ metadata.gz: c477692497bba3df0d4545ed9d4e4e7fd18b6918
4
+ data.tar.gz: 9224079fa17a1993d471be4da3769f1c96139202
5
5
  SHA512:
6
- metadata.gz: 86e09f20723efd9b0cd2574b6bc0191c5f7f0483a4bd50d0d7d3b77d227239bda9db764e53b3254c7497a95ab052810786895f0fbb1ea1892bfaf505a56254aa
7
- data.tar.gz: 1e2286d2c6bb0c683315b6ef74f80262a90610b58fde1465b6a21511075f37554a6ca17a0fa4219fed196da673d67685c85fa9441b91edd2cd6a4a258fa078fd
6
+ metadata.gz: 1143ac48afac3679abfa6a1187c29ad3d832c94951096670ba78062b9df2d95ef893a8996287f3ec4b2da3a77bd1753697e6a6d9d00e0d04f333d2e531ddbf78
7
+ data.tar.gz: 62d25d8868801db9a8360743ef8bd0348b6ffb1f2fc99e674abbd703d7d1a9f0793ed6d6a7665206f149e9d2713fe58698d90d6a6b3839234453b3563c014411
@@ -66,5 +66,8 @@ Style/FileName:
66
66
  Exclude:
67
67
  - 'spec/fixtures/utf-8.rb'
68
68
 
69
- Style/TrailingComma:
70
- EnforcedStyleForMultiline: 'comma'
69
+ Style/TrailingCommaInLiteral:
70
+ EnforcedStyleForMultiline: comma
71
+
72
+ Style/GuardClause:
73
+ Enabled: false
@@ -1,10 +1,24 @@
1
- Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.11.0...master))
1
+ Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.11.2...master))
2
2
  =================
3
3
 
4
4
  ## Enhancements
5
5
 
6
6
  ## Bugfixes
7
7
 
8
+ 0.11.2 2016-02-03 ([changes](https://github.com/colszowka/simplecov/compare/v0.11.1...v0.11.2))
9
+ =================
10
+
11
+ ## Enhancements
12
+
13
+ * Do not globally pollute Array and Hash with `merge_resultset` utility methods. See [#449](https://github.com/colszowka/simplecov/pull/449) (thanks @amatsuda)
14
+ * Do not `mkdir_p` the `coverage_path` on every access of the method (See [#453](https://github.com/colszowka/simplecov/pull/453) (thanks @paddor)
15
+ * Fixes a Ruby warning related to the `track_files` configuration. See [#447](https://github.com/colszowka/simplecov/pull/447) (thanks @craiglittle)
16
+ * Add a group for background jobs to default Rails profile. See [#442](https://github.com/colszowka/simplecov/pull/442) (thanks @stve)
17
+
18
+ ## Bugfixes
19
+
20
+ * Fix root_filter evaluates SimpleCov.root before initialization. See [#437](https://github.com/colszowka/simplecov/pull/437) (thanks @tmtm)
21
+
8
22
  0.11.1 2015-12-01 ([changes](https://github.com/colszowka/simplecov/compare/v0.11.0...v0.11.1))
9
23
  =================
10
24
 
@@ -20,7 +34,7 @@ Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.11.0...m
20
34
  ## Enhancements
21
35
 
22
36
  * Added `SimpleCov.minimum_coverage_by_file` for per-file coverage thresholds. See [#392](https://github.com/colszowka/simplecov/pull/392) (thanks @ptashman)
23
- * Added `track_files` configuration option to specify a glob to always include in coverage results, whether or not those files are required. See [#422](https://github.com/colszowka/simplecov/pull/422) (thanks @hugopeixoto)
37
+ * Added `track_files` configuration option to specify a glob to always include in coverage results, whether or not those files are required. By default, this is enabled in the Rails profile for common Rails directories. See [#422](https://github.com/colszowka/simplecov/pull/422) (thanks @hugopeixoto)
24
38
  * Speed up `root_filter` by an order of magnitude. See [#396](https://github.com/colszowka/simplecov/pull/396) (thanks @raszi)
25
39
 
26
40
  ## Bugfixes
data/Gemfile CHANGED
@@ -15,7 +15,7 @@ group :test do
15
15
  gem "activesupport", "~> 3.2.21"
16
16
  gem "i18n", "~> 0.6.11"
17
17
  end
18
- platform :jruby, :ruby_19, :ruby_20, :ruby_21, :ruby_22 do
18
+ platform :jruby, :ruby_19, :ruby_20, :ruby_21, :ruby_22, :ruby_23 do
19
19
  gem "aruba", "~> 0.7.4"
20
20
  gem "capybara", "~> 2.4"
21
21
 
@@ -26,7 +26,7 @@ group :test do
26
26
  gem "cucumber", "~> 2.0"
27
27
  gem "phantomjs", "~> 1.9"
28
28
  gem "poltergeist", "~> 1.1"
29
- gem "rubocop", ">= 0.30"
29
+ gem "rubocop", "~> 0.36.0"
30
30
  gem "test-unit", "~> 3.0"
31
31
  end
32
32
  end
data/README.md CHANGED
@@ -6,11 +6,8 @@ SimpleCov [![Build Status](https://secure.travis-ci.org/colszowka/simplecov.png)
6
6
  * [API documentation]
7
7
  * [Changelog]
8
8
  * [Rubygem]
9
- * [Mailing List]
10
9
  * [Continuous Integration]
11
10
 
12
- **Important Notice: There is a bug that affects exit code handling on the 0.8 line of SimpleCov, see [#281](https://github.com/colszowka/simplecov/issues/281). Please use versions `>= 0.9` to avoid this.**
13
-
14
11
  [Coverage]: http://www.ruby-doc.org/stdlib-2.1.0/libdoc/coverage/rdoc/Coverage.html "API doc for Ruby's Coverage library"
15
12
  [Source Code]: https://github.com/colszowka/simplecov "Source Code @ GitHub"
16
13
  [API documentation]: http://rubydoc.info/gems/simplecov/frames "RDoc API Documentation at Rubydoc.info"
@@ -20,10 +17,6 @@ SimpleCov [![Build Status](https://secure.travis-ci.org/colszowka/simplecov.png)
20
17
  [Continuous Integration]: http://travis-ci.org/colszowka/simplecov "SimpleCov is built around the clock by travis-ci.org"
21
18
  [Dependencies]: https://gemnasium.com/colszowka/simplecov "SimpleCov dependencies on Gemnasium"
22
19
  [simplecov-html]: https://github.com/colszowka/simplecov-html "SimpleCov HTML Formatter Source Code @ GitHub"
23
- [Mailing List]: https://groups.google.com/forum/#!forum/simplecov "Open mailing list for discussion and announcements on Google Groups"
24
- [Pledgie]: http://www.pledgie.com/campaigns/18379
25
-
26
- [![You can support the development of SimpleCov via Pledgie - thanks for your help](https://pledgie.com/campaigns/18379.png?skin_name=chrome)][Pledgie]
27
20
 
28
21
  SimpleCov is a code coverage analysis tool for Ruby. It uses [Ruby's built-in Coverage][Coverage] library to gather code
29
22
  coverage data, but makes processing its results much easier by providing a clean API to filter, group, merge, format,
@@ -2,13 +2,17 @@
2
2
  # Code coverage for ruby 1.9. Please check out README for a full introduction.
3
3
  #
4
4
  # Coverage may be inaccurate under JRUBY.
5
- if defined?(JRUBY_VERSION)
6
- if ENV["JRUBY_OPTS"].to_s !~ /-Xcli.debug=true/
7
- warn "Coverage may be inaccurate; Try setting JRUBY_OPTS=\"-Xcli.debug=true --debug\""
8
- # see https://github.com/metricfu/metric_fu/pull/226
9
- # https://github.com/jruby/jruby/issues/1196
10
- # https://jira.codehaus.org/browse/JRUBY-6106
11
- # https://github.com/colszowka/simplecov/issues/86
5
+ if defined?(JRUBY_VERSION) && defined?(JRuby)
6
+
7
+ # @see https://github.com/jruby/jruby/issues/1196
8
+ # @see https://github.com/metricfu/metric_fu/pull/226
9
+ # @see https://github.com/colszowka/simplecov/issues/420
10
+ # @see https://github.com/colszowka/simplecov/issues/86
11
+ # @see https://jira.codehaus.org/browse/JRUBY-6106
12
+
13
+ unless JRuby.runtime.debug?
14
+ warn 'Coverage may be inaccurate; set "cli.debug=true" ("-Xcli.debug=true") in your .jrubyrc or' \
15
+ ' do JRUBY_OPTS="-d"'
12
16
  end
13
17
  end
14
18
  module SimpleCov
@@ -53,9 +57,9 @@ module SimpleCov
53
57
  # their coverage to zero.
54
58
  #
55
59
  def add_not_loaded_files(result)
56
- if @track_files_glob
60
+ if track_files
57
61
  result = result.dup
58
- Dir[@track_files_glob].each do |file|
62
+ Dir[track_files].each do |file|
59
63
  absolute = File.expand_path(file)
60
64
 
61
65
  result[absolute] ||= [0] * File.foreach(absolute).count
@@ -70,14 +74,22 @@ module SimpleCov
70
74
  # from cache using SimpleCov::ResultMerger if use_merging is activated (default)
71
75
  #
72
76
  def result
73
- @result ||= SimpleCov::Result.new(add_not_loaded_files(Coverage.result)) if running
77
+ # Ensure the variable is defined to avoid ruby warnings
78
+ @result = nil unless defined?(@result)
79
+
80
+ # Collect our coverage result
81
+ if running && !result?
82
+ @result = SimpleCov::Result.new add_not_loaded_files(Coverage.result)
83
+ end
84
+
74
85
  # If we're using merging of results, store the current result
75
86
  # first, then merge the results and return those
76
87
  if use_merging
77
- SimpleCov::ResultMerger.store_result(@result) if @result
78
- return SimpleCov::ResultMerger.merged_result
88
+ SimpleCov::ResultMerger.store_result(@result) if result?
89
+
90
+ SimpleCov::ResultMerger.merged_result
79
91
  else
80
- return @result if defined? @result
92
+ @result
81
93
  end
82
94
  ensure
83
95
  self.running = false
@@ -28,6 +28,7 @@ module SimpleCov
28
28
  #
29
29
  def coverage_dir(dir = nil)
30
30
  return @coverage_dir if defined?(@coverage_dir) && dir.nil?
31
+ @coverage_path = nil # invalidate cache
31
32
  @coverage_dir = (dir || "coverage")
32
33
  end
33
34
 
@@ -37,9 +38,11 @@ module SimpleCov
37
38
  # values. Will create the directory if it's missing
38
39
  #
39
40
  def coverage_path
40
- coverage_path = File.expand_path(coverage_dir, root)
41
- FileUtils.mkdir_p coverage_path
42
- coverage_path
41
+ @coverage_path ||= begin
42
+ coverage_path = File.expand_path(coverage_dir, root)
43
+ FileUtils.mkdir_p coverage_path
44
+ coverage_path
45
+ end
43
46
  end
44
47
 
45
48
  #
@@ -47,8 +50,9 @@ module SimpleCov
47
50
  # or not they were explicitly required. Without this, un-required files
48
51
  # will not be present in the final report.
49
52
  #
50
- def track_files(glob)
51
- @track_files_glob = glob
53
+ def track_files(glob = nil)
54
+ return @track_files if defined?(@track_files) && glob.nil?
55
+ @track_files = glob
52
56
  end
53
57
 
54
58
  #
@@ -114,7 +118,7 @@ module SimpleCov
114
118
  return @nocov_token if defined?(@nocov_token) && nocov_token.nil?
115
119
  @nocov_token = (nocov_token || "nocov")
116
120
  end
117
- alias_method :skip_token, :nocov_token
121
+ alias skip_token nocov_token
118
122
 
119
123
  #
120
124
  # Returns the configured groups. Add groups using SimpleCov.add_group
@@ -4,8 +4,9 @@ require "pathname"
4
4
 
5
5
  SimpleCov.profiles.define "root_filter" do
6
6
  # Exclude all files outside of simplecov root
7
- root_filter = /\A#{Regexp.escape(SimpleCov.root)}/io
7
+ root_filter = nil
8
8
  add_filter do |src|
9
+ root_filter ||= /\A#{Regexp.escape(SimpleCov.root)}/io
9
10
  !(src.filename =~ root_filter)
10
11
  end
11
12
  end
@@ -31,6 +32,7 @@ SimpleCov.profiles.define "rails" do
31
32
  add_group "Models", "app/models"
32
33
  add_group "Mailers", "app/mailers"
33
34
  add_group "Helpers", "app/helpers"
35
+ add_group "Jobs", %w(app/jobs app/workers)
34
36
  add_group "Libraries", "lib"
35
37
 
36
38
  track_files "{app,lib}/**/*.rb"
@@ -51,15 +53,16 @@ at_exit do
51
53
  # If we are in a different process than called start, don't interfere.
52
54
  next if SimpleCov.pid != Process.pid
53
55
 
54
- if $! # was an exception thrown?
55
- # if it was a SystemExit, use the accompanying status
56
- # otherwise set a non-zero status representing termination by some other exception
57
- # (see github issue 41)
58
- @exit_status = $!.is_a?(SystemExit) ? $!.status : SimpleCov::ExitCodes::EXCEPTION
59
- else
60
- # Store the exit status of the test run since it goes away after calling the at_exit proc...
61
- @exit_status = SimpleCov::ExitCodes::SUCCESS
62
- end
56
+ @exit_status = if $! # was an exception thrown?
57
+ # if it was a SystemExit, use the accompanying status
58
+ # otherwise set a non-zero status representing termination by
59
+ # some other exception (see github issue 41)
60
+ $!.is_a?(SystemExit) ? $!.status : SimpleCov::ExitCodes::EXCEPTION
61
+ else
62
+ # Store the exit status of the test run since it goes away
63
+ # after calling the at_exit proc...
64
+ SimpleCov::ExitCodes::SUCCESS
65
+ end
63
66
 
64
67
  SimpleCov.at_exit.call
65
68
 
@@ -11,7 +11,7 @@ if defined?(JRUBY_VERSION) && JRUBY_VERSION.to_f < 1.7
11
11
  # This monkey patches Coverage to address those issues
12
12
  module Coverage
13
13
  class << self
14
- alias_method :__broken_result__, :result
14
+ alias __broken_result__ result
15
15
 
16
16
  def result # rubocop:disable Metrics/MethodLength
17
17
  fixed = {}
@@ -27,12 +27,9 @@ module SimpleCov
27
27
  end
28
28
 
29
29
  new_resultset.each_key do |filename|
30
- new_resultset[filename] = (self[filename] || []).merge_resultset(hash[filename] || [])
30
+ new_resultset[filename] = (self[filename] || []).extend(SimpleCov::ArrayMergeHelper).merge_resultset(hash[filename] || [])
31
31
  end
32
32
  new_resultset
33
33
  end
34
34
  end
35
35
  end
36
-
37
- Array.send :include, SimpleCov::ArrayMergeHelper
38
- Hash.send :include, SimpleCov::HashMergeHelper
@@ -12,7 +12,7 @@ module SimpleCov
12
12
  attr_reader :original_result
13
13
  # Returns all files that are applicable to this result (sans filters!) as instances of SimpleCov::SourceFile. Aliased as :source_files
14
14
  attr_reader :files
15
- alias_method :source_files, :files
15
+ alias source_files files
16
16
  # Explicitly set the Time this result has been created
17
17
  attr_writer :created_at
18
18
  # Explicitly set the command name that was used for this coverage result. Defaults to SimpleCov.command_name
@@ -24,6 +24,7 @@ module SimpleCov
24
24
  # Initialize a new SimpleCov::Result from given Coverage.result (a Hash of filenames each containing an array of
25
25
  # coverage data)
26
26
  def initialize(original_result)
27
+ original_result = original_result.dup.extend(SimpleCov::HashMergeHelper) unless original_result.is_a? SimpleCov::HashMergeHelper
27
28
  @original_result = original_result.freeze
28
29
  @files = SimpleCov::FileList.new(original_result.map do |filename, coverage|
29
30
  SimpleCov::SourceFile.new(filename, coverage) if File.file?(filename)
@@ -20,9 +20,9 @@ module SimpleCov
20
20
  attr_reader :skipped
21
21
 
22
22
  # Lets grab some fancy aliases, shall we?
23
- alias_method :source, :src
24
- alias_method :line, :line_number
25
- alias_method :number, :line_number
23
+ alias source src
24
+ alias line line_number
25
+ alias number line_number
26
26
 
27
27
  def initialize(src, line_number, coverage)
28
28
  fail ArgumentError, "Only String accepted for source" unless src.is_a?(String)
@@ -76,7 +76,7 @@ module SimpleCov
76
76
  attr_reader :coverage
77
77
  # The source code for this file. Aliased as :source
78
78
  attr_reader :src
79
- alias_method :source, :src
79
+ alias source src
80
80
 
81
81
  def initialize(filename, coverage)
82
82
  @filename = filename
@@ -102,7 +102,7 @@ module SimpleCov
102
102
  process_skipped_lines!
103
103
  @lines
104
104
  end
105
- alias_method :source_lines, :lines
105
+ alias source_lines lines
106
106
 
107
107
  # Access SimpleCov::SourceFile::Line source lines by line number
108
108
  def line(number)
@@ -116,7 +116,7 @@ module SimpleCov
116
116
  if relevant_lines.zero?
117
117
  0.0
118
118
  else
119
- Float((covered_lines.count) * 100.0 / relevant_lines.to_f)
119
+ Float(covered_lines.count * 100.0 / relevant_lines.to_f)
120
120
  end
121
121
  end
122
122
 
@@ -172,8 +172,8 @@ module SimpleCov
172
172
  lines.each do |line|
173
173
  if line.src =~ /^([\s]*)#([\s]*)(\:#{SimpleCov.nocov_token}\:)/
174
174
  skipping = !skipping
175
- else
176
- line.skipped! if skipping
175
+ elsif skipping
176
+ line.skipped!
177
177
  end
178
178
  end
179
179
  end
@@ -1,22 +1,25 @@
1
1
  module SimpleCov
2
- VERSION = "0.11.1"
3
- def VERSION.to_a
2
+ version = "0.11.2"
3
+
4
+ def version.to_a
4
5
  split(".").map(&:to_i)
5
6
  end
6
7
 
7
- def VERSION.major
8
+ def version.major
8
9
  to_a[0]
9
10
  end
10
11
 
11
- def VERSION.minor
12
+ def version.minor
12
13
  to_a[1]
13
14
  end
14
15
 
15
- def VERSION.patch
16
+ def version.patch
16
17
  to_a[2]
17
18
  end
18
19
 
19
- def VERSION.pre
20
+ def version.pre
20
21
  to_a[3]
21
22
  end
23
+
24
+ VERSION = version.freeze
22
25
  end
@@ -9,7 +9,7 @@ describe "merge helpers" do
9
9
  source_fixture("app/models/user.rb") => [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil],
10
10
  source_fixture("app/controllers/sample_controller.rb") => [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil],
11
11
  source_fixture("resultset1.rb") => [1, 1, 1, 1],
12
- }
12
+ }.extend(SimpleCov::HashMergeHelper)
13
13
 
14
14
  @resultset2 = {
15
15
  source_fixture("sample.rb") => [1, nil, 1, 1, nil, nil, 1, 1, nil, nil],
@@ -1,7 +1,7 @@
1
1
  require "helper"
2
2
 
3
3
  describe SimpleCov::SourceFile do
4
- COVERAGE_FOR_SAMPLE_RB = [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil, nil, nil, nil, nil, nil, nil]
4
+ COVERAGE_FOR_SAMPLE_RB = [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil, nil, nil, nil, nil, nil, nil].freeze
5
5
  context "a source file initialized with some coverage data" do
6
6
  subject do
7
7
  SimpleCov::SourceFile.new(source_fixture("sample.rb"), COVERAGE_FOR_SAMPLE_RB)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christoph Olszowka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-02 00:00:00.000000000 Z
11
+ date: 2016-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -209,87 +209,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  version: '0'
210
210
  requirements: []
211
211
  rubyforge_project:
212
- rubygems_version: 2.4.5
212
+ rubygems_version: 2.5.1
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: Code coverage for Ruby 1.9+ with a powerful configuration library and automatic
216
216
  merging of coverage across test suites
217
- test_files:
218
- - features/config_autoload.feature
219
- - features/config_command_name.feature
220
- - features/config_coverage_dir.feature
221
- - features/config_deactivate_merging.feature
222
- - features/config_formatters.feature
223
- - features/config_merge_timeout.feature
224
- - features/config_nocov_token.feature
225
- - features/config_profiles.feature
226
- - features/config_project_name.feature
227
- - features/config_styles.feature
228
- - features/config_tracked_files.feature
229
- - features/cucumber_basic.feature
230
- - features/maximum_coverage_drop.feature
231
- - features/merging_test_unit_and_rspec.feature
232
- - features/minimum_coverage.feature
233
- - features/refuse_coverage_drop.feature
234
- - features/rspec_basic.feature
235
- - features/rspec_fails_on_initialization.feature
236
- - features/rspec_groups_and_filters_basic.feature
237
- - features/rspec_groups_and_filters_complex.feature
238
- - features/rspec_groups_using_filter_class.feature
239
- - features/rspec_without_simplecov.feature
240
- - features/skipping_code_blocks_manually.feature
241
- - features/step_definitions/html_steps.rb
242
- - features/step_definitions/simplecov_steps.rb
243
- - features/step_definitions/transformers.rb
244
- - features/step_definitions/web_steps.rb
245
- - features/support/env.rb
246
- - features/test_unit_basic.feature
247
- - features/test_unit_groups_and_filters_basic.feature
248
- - features/test_unit_groups_and_filters_complex.feature
249
- - features/test_unit_groups_using_filter_class.feature
250
- - features/test_unit_without_simplecov.feature
251
- - features/unicode_compatiblity.feature
252
- - spec/1_8_fallbacks_spec.rb
253
- - spec/command_guesser_spec.rb
254
- - spec/deleted_source_spec.rb
255
- - spec/faked_project/Gemfile
256
- - spec/faked_project/Rakefile
257
- - spec/faked_project/cucumber.yml
258
- - spec/faked_project/features/step_definitions/my_steps.rb
259
- - spec/faked_project/features/support/env.rb
260
- - spec/faked_project/features/test_stuff.feature
261
- - spec/faked_project/lib/faked_project.rb
262
- - spec/faked_project/lib/faked_project/framework_specific.rb
263
- - spec/faked_project/lib/faked_project/meta_magic.rb
264
- - spec/faked_project/lib/faked_project/some_class.rb
265
- - spec/faked_project/lib/faked_project/untested_class.rb
266
- - spec/faked_project/spec/faked_spec.rb
267
- - spec/faked_project/spec/forking_spec.rb
268
- - spec/faked_project/spec/meta_magic_spec.rb
269
- - spec/faked_project/spec/some_class_spec.rb
270
- - spec/faked_project/spec/spec_helper.rb
271
- - spec/faked_project/test/faked_test.rb
272
- - spec/faked_project/test/meta_magic_test.rb
273
- - spec/faked_project/test/some_class_test.rb
274
- - spec/faked_project/test/test_helper.rb
275
- - spec/file_list_spec.rb
276
- - spec/filters_spec.rb
277
- - spec/fixtures/app/controllers/sample_controller.rb
278
- - spec/fixtures/app/models/user.rb
279
- - spec/fixtures/deleted_source_sample.rb
280
- - spec/fixtures/frameworks/rspec_bad.rb
281
- - spec/fixtures/frameworks/rspec_good.rb
282
- - spec/fixtures/frameworks/testunit_bad.rb
283
- - spec/fixtures/frameworks/testunit_good.rb
284
- - spec/fixtures/iso-8859.rb
285
- - spec/fixtures/resultset1.rb
286
- - spec/fixtures/resultset2.rb
287
- - spec/fixtures/sample.rb
288
- - spec/fixtures/utf-8.rb
289
- - spec/helper.rb
290
- - spec/merge_helpers_spec.rb
291
- - spec/multi_formatter_spec.rb
292
- - spec/result_spec.rb
293
- - spec/return_codes_spec.rb
294
- - spec/source_file_line_spec.rb
295
- - spec/source_file_spec.rb
217
+ test_files: []