Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
430 views

Rcov coverage changes drastically with -xrefs

My current Ruby on Rails project does testing via rcov (specifically, relevance rcov, and we have a pretty high standard (we fail the build if we have < 95% code coverage). We use the following ...
8
votes
1answer
82 views

In rcov, is there a way to find which test method traversed a given line of code being tested?

In rcov, is there a way to find which test methods were tracked as having covered a given line of code (in your target code that you're testing)?
5
votes
2answers
504 views

Rcov: Why is this code not being considered covered?

Here's my controller: class MyController < ApplicationController include MyHelper def index get_list_from_params do |list| @list = list respond_to do |format| ...
4
votes
0answers
61 views

RCov for RSpec 2 not detecting coverage correctly? (not Rails!)

Preface I've just started getting into Ruby and try to not only learn the language but also some development strategies. As kind of a beginner I'm concentrating on Test and Behaviour Driven ...
4
votes
1answer
711 views

rcov + Rails3 rc now broken from linecache dependency

I hit a wall today with rcov + Rails3. I am developing my Rails3 app using Ruby 1.9.2-preview3. rcov and relevance-rcov do not work with Ruby 1.9.2 yet. I can't find any fork of rcov that does yet ...
4
votes
3answers
5k views

RCov with RSpec-2

I'm working with a bit of a bleeding edge rails app. Rails 3, RSpec 2, Rspec-Rails2. It seems as if RSpec2 doesn't include the spec:rcov rake task that RSpec 1 has. (at least it isn't there yet) ...
4
votes
1answer
158 views

How does one collect rcov-style information on the processing of erb templates?

I'm using rcov on a set of tests autogenerated from my rails routes to collect information on dead code (code which is never called in the application). This set up already generates enlightening ...
3
votes
4answers
130 views

Un-monkey patching a class/method in Ruby

I'm trying to unit test a piece of code that I've written in Ruby that calls File.open. To mock it out, I monkeypatched File.open to the following: class File def self.open(name, &block) if ...
3
votes
1answer
229 views

Why is RCov excluding views and including comments?

I am using Rails 3, RSpec 2 and the rcov gem. I am running rcov on my specs with the following rake task: desc "Run all specs with rcov" RSpec::Core::RakeTask.new(:rcov => spec_prereq) do |t| ...
2
votes
1answer
99 views

what is the best way to measure code coverage against a single spec with ruby?

I typically do rake spec:rcov but that measures code coverage across all tests. I would like a way to measure code coverage from one spec to help ensure that each model's spec is testing the full ...
2
votes
1answer
691 views

Skipping files in spec/ when running rcov with RSpec 2.5

When running rake spec:rcov for a Rails 3 application, the files in the spec/ directory are getting included in the coverage statistics, but I don't want them to be. I want coverage statistics only ...
2
votes
2answers
206 views

Code coverage tools for haml?

It looks like it's quite possible to get a useful coverage report for Haml code, due to its one one-statement-per-line structure. Do you know of any code coverage tools for Haml? Maybe something is ...
2
votes
1answer
629 views

Metric Fu: RCov fails to load spec_helper

I am trying to run metric_fu on a Rails 3 application. All is good, with the exception of rcov. I have RSpec configured and my tests follow the spec/*/.rb format and run fine in RSpec. Trying to ...
2
votes
1answer
283 views

RCov started analyzing loaded libs (including Rdoc itself) – when using rvm (Ruby Version Manager)

Context rcov 0.9.8 2010-02-28 ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin10.3.0] rvm 0.1.38 by Wayne E. Seguin (wayneeseguin@gmail.com) [http://rvm.beginrescueend.com/] System Ruby (rvm use ...
2
votes
3answers
704 views

Metric-Fu/Rcov “No File To Analyze”

I'm trying to get metric-fu running on a rails project I'm working with. Every time it runs the rcov portion of the metrics I get: ** Invoke metrics:all (first_time) ** Execute metrics:all No file ...
2
votes
1answer
598 views

RCov doesn't work

I am currently developing a Ruby gem and want to create metrics. I am using 'metric_fu', but RCov seems to leave my specs. Here is my metric_fu configuration: MetricFu::Configuration.run do ...
1
vote
2answers
67 views

How do I get code coverage stats for my Sinatra app?

I have written a Sinatra app (web site), and I would like to collect code coverage information for the site's code. I'm new to Ruby, but Google tells me that rcov is a good code coverage tool. ...
1
vote
0answers
175 views

Warnings with RCov and Saikuro while installing Metrical

Having hard time installing some gems needed to get Metrical up and running. WARNING: Saikuro-1.1.0 has an invalid nil value for @cert_chain WARNING: rcov-0.9.9 has an invalid nil value for ...
1
vote
1answer
329 views

How to get Hudson to see rcov results?

I am currently working to integrate rcov with our Hudson server. I am able to run rcov via rake and get the results with out issue (see rake file below). When I run things via Hudson - calling the ...
1
vote
1answer
465 views

Can you use RSpec, Shoulda, RCov?

I am attempting to get RCov to work with my RSpec and Shoulda test for a rails 3 app. It seems to work fine with my RSpec after using the Rake task below but all of the shoulda tests fail and I cant ...
1
vote
2answers
388 views

cucumber + selenium + rcov =?

Is it possible to measure coverage using selenium-driven features?
0
votes
0answers
28 views

rcov code coverage issue

I am using rcov (0.9.11), ruby 1.8.7, Rails 3.1, spec 2.7. The coverage report shows some of the code as having 0% coverage but I have test coverage for it. When I modify the code with 0% coverage, I ...
0
votes
2answers
60 views

Rcov show files wih 0% code coverage not considered

I'm currently running rcov in a Rails Project (ruby 1.8.7). I let Jenkins take care of the overview of the code coverage. Unfortunately only files that have a code coverage greater than 0.0% are ...
0
votes
0answers
64 views

Rcov does not exclude gems when running rake spec:rcov

I use Rspec to develop and test custom extensions for Radiant. When running rake spec:rcov in the extension dir, it runs all tests from my spec folder but generates coverage files for all gems that I ...
0
votes
1answer
195 views

Confused about simplecov and rspec in rails

This is code in a model: def find_tech Category.find_by_name("tech") end and this is the rspec test: x = Category.find_tech x.name.should == "tech" and the test passes. But rcov ...
0
votes
0answers
116 views

Problem installing rcov-0.8.1.2.0 on OS X

I have a rails 3.0.7 application that is failing to load the development console. I keep getting the error: Could not find rcov-0.8.1.2.0 in any of the sources Try running `bundle install`. When I ...
0
votes
2answers
183 views

How to exclude file in rcov and cucumber?

I want to exclude files like on this picture below, so it not necessary include to test, so how to solve this problem? http://i.stack.imgur.com/n9Lwk.png
0
votes
0answers
233 views

Rcov with Rspec2 seems to give the wrong results

I'm running Rails 3, Rspec2, rcov from 'https://github.com/Undev/rcov.git' and Ruby 1.9.2. I find when I do a 'rake spec:rcov' that the results are not exactly correct. It highlights the method ...
0
votes
3answers
479 views

rcov outside rails

This may seem obvious but I don't find a way to run Rcov or coverMe outside a Rails project. I would like to use it with Rspec 2.5 I am using Ruby 1.9.2 so I guess this may be the problem. I also ...
0
votes
1answer
632 views

Rspec2 issue with Rcov

In my Rakefile, I have a task defined like this: namespace :test do desc "Run all specs." RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = 'spec/**/*_spec.rb' t.verbose = false end ...
0
votes
1answer
117 views

How do I see the statistics for rcov from the command line?

I'm running the built-in rake task to generate rcov reports: rake spec:rcov This generate files in my coverage directory, but I would like to see some aggregate stats output to the command console. ...
0
votes
1answer
151 views

Cofiguration Rmetrics with Rcov in hudson error

When I attempt to save a job that runs code coverage tests and is configured to publish an rcov report I get the error message listed below and the changes I made aren't saved. This problem cropped up ...
0
votes
1answer
863 views

Rails Testing System Stack Error

I resumed testing my rails app after suspending it. Running tests on my rails app returns a SystemStackError now. Even a simple test like def test_per_page assert_instance_of Fixnum, ...