[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Testing Gems

Caleb Tennis

1/11/2006 1:45:00 PM

According to http://docs.rubygems.org/read/chapter/20#..., the
test_files section of the gemspec file lists test files that are loaded "when
the user requests a gem to be unit tested".

Is there a gem command to run the tests? I can't see one listed in the help,
but I may just be missing it.

Caleb


3 Answers

Ross Bamford

1/11/2006 2:11:00 PM

0

On Wed, 11 Jan 2006 13:45:04 -0000, Caleb Tennis <caleb@aei-tech.com>
wrote:

> According to http://docs.rubygems.org/read/chapter/20#..., the
> test_files section of the gemspec file lists test files that are loaded
> "when
> the user requests a gem to be unit tested".
>
> Is there a gem command to run the tests? I can't see one listed in the
> help,
> but I may just be missing it.
>

Try something like:

$ gem install --test somegem

There is detail with:

$ gem help install
$ gem help examples

If the tests succeed, there's no output (at least by default?) but they do
run if they're there (after Rdoc I think).

Cheers,

--
Ross Bamford - rosco@roscopeco.remove.co.uk

Robin Stocker

1/11/2006 2:16:00 PM

0

Hi,

I recently had exactly the same question... So, maybe the Gemspec
Reference should be updated.

The install command has the --test or -t option.
Have a look at gem help install.

So, for example:
gem install examplegem --test

Robin

Caleb Tennis wrote:
> According to http://docs.rubygems.org/read/chapter/20#..., the
> test_files section of the gemspec file lists test files that are loaded "when
> the user requests a gem to be unit tested".
>
> Is there a gem command to run the tests? I can't see one listed in the help,
> but I may just be missing it.
>
> Caleb



Mark Volkmann

1/11/2006 2:21:00 PM

0

On 1/11/06, Robin Stocker <robin@nibor.org> wrote:
> Hi,
>
> I recently had exactly the same question... So, maybe the Gemspec
> Reference should be updated.
>
> The install command has the --test or -t option.
> Have a look at gem help install.
>
> So, for example:
> gem install examplegem --test

Interesting thing about running the tests this way ...
If the gem has no tests, it outputs "There are no unit tests to run".
If any tests fail, it prompts whether to keep the gem.
If no tests fail, there is no output and no indication that tests were run.

I don't really like that last part. I wish there was some output
indicating that the tests were actually run.

> Caleb Tennis wrote:
> > According to http://docs.rubygems.org/read/chapter/20#..., the
> > test_files section of the gemspec file lists test files that are loaded "when
> > the user requests a gem to be unit tested".
> >
> > Is there a gem command to run the tests? I can't see one listed in the help,
> > but I may just be missing it.
> >
> > Caleb
>
>
>


--
R. Mark Volkmann
Partner, Object Computing, Inc.