[ANN] HTML reporter for Test::Unit

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides an HTML reporter for your unit tests. With an RSS feed that gets updated with your test results every time you run your tests, it's great for continuous integration. The web interface to your test results also helps to prove that you're actually running tests. :slight_smile:

It's free and easy. Set up an account, download and configure the code that extends Test::Unit, and be amazed as lovely green bars show up on the web as you run your tests.

路路路

--
Building an e-commerce site with Rails?
http://www.agilewebdevelopment.com/rails-ecommerce

AWESOME!

Will test this now.

I'd pay for something like this, if stable & always available.

路路路

On 10/8/06, Benjamin Curtis <ruby@bencurtis.com> wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides
an HTML reporter for your unit tests. With an RSS feed that gets
updated with your test results every time you run your tests, it's
great for continuous integration. The web interface to your test
results also helps to prove that you're actually running tests. :slight_smile:

It's free and easy. Set up an account, download and configure the
code that extends Test::Unit, and be amazed as lovely green bars show
up on the web as you run your tests.

--
Building an e-commerce site with Rails?
http://www.agilewebdevelopment.com/rails-ecommerce

This looks neat, but, will you ever be opening up the webapp source?

路路路

On 10/7/06, Benjamin Curtis <ruby@bencurtis.com> wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides
an HTML reporter for your unit tests. With an RSS feed that gets
updated with your test results every time you run your tests, it's
great for continuous integration. The web interface to your test
results also helps to prove that you're actually running tests. :slight_smile:

It's free and easy. Set up an account, download and configure the
code that extends Test::Unit, and be amazed as lovely green bars show
up on the web as you run your tests.

--
Building an e-commerce site with Rails?
http://www.agilewebdevelopment.com/rails-ecommerce

--
Chris Carter
concentrationstudios.com
brynmawrcs.com

Hey Benjamin-

  Very cool little app. Nice idea and good execution.

-Ezra

路路路

On Oct 7, 2006, at 9:06 PM, Benjamin Curtis wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides an HTML reporter for your unit tests. With an RSS feed that gets updated with your test results every time you run your tests, it's great for continuous integration. The web interface to your test results also helps to prove that you're actually running tests. :slight_smile:

It's free and easy. Set up an account, download and configure the code that extends Test::Unit, and be amazed as lovely green bars show up on the web as you run your tests.

Hmm, pretty cool idea, but it doesn't seem to be picking up my test
runs. Is there a problem with that side of things at the moment?

路路路

On Sun, 2006-10-08 at 13:06 +0900, Benjamin Curtis wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides
an HTML reporter for your unit tests.

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

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

cattr_accessor :app_name, :user

Thanks for the excellent contribution.

tim

It's great, I tested it.

Very easy to setup, clean interface, awesome.

Notifying me by email if test cases fail would probably be the ontly thing
that's missing for some kind of CI.

Thanks,
Rob

路路路

On 10/8/06, Robert MannI <robmnl@gmail.com> wrote:

AWESOME!

Will test this now.

I'd pay for something like this, if stable & always available.

On 10/8/06, Benjamin Curtis < ruby@bencurtis.com> wrote:
>
> Tesly Jr. (http://junior.tesly.com ) is a hosted web app that provides
> an HTML reporter for your unit tests. With an RSS feed that gets
> updated with your test results every time you run your tests, it's
> great for continuous integration. The web interface to your test
> results also helps to prove that you're actually running tests. :slight_smile:
>
> It's free and easy. Set up an account, download and configure the
> code that extends Test::Unit, and be amazed as lovely green bars show
> up on the web as you run your tests.
>
> --
> Building an e-commerce site with Rails?
> http://www.agilewebdevelopment.com/rails-ecommerce
>

I may open the code at some point in the future, but not in the near future.

路路路

On Oct 8, 2006, at 7:40 AM, Chris Carter wrote:

This looks neat, but, will you ever be opening up the webapp source?

On 10/7/06, Benjamin Curtis <ruby@bencurtis.com> wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides
an HTML reporter for your unit tests. With an RSS feed that gets
updated with your test results every time you run your tests, it's
great for continuous integration. The web interface to your test
results also helps to prove that you're actually running tests. :slight_smile:

It's free and easy. Set up an account, download and configure the
code that extends Test::Unit, and be amazed as lovely green bars show
up on the web as you run your tests.

--
Building an e-commerce site with Rails?
http://www.agilewebdevelopment.com/rails-ecommerce

--
Chris Carter
concentrationstudios.com
brynmawrcs.com

I took a look in the logs and it looks like your test results were never sent to the app. Are you sure you're including tesly_reporter.rb to get Test::Unit extended?

路路路

On Oct 8, 2006, at 4:14 PM, Ross Bamford wrote:

On Sun, 2006-10-08 at 13:06 +0900, Benjamin Curtis wrote:

Tesly Jr. (http://junior.tesly.com) is a hosted web app that provides
an HTML reporter for your unit tests.

Hmm, pretty cool idea, but it doesn't seem to be picking up my test
runs. Is there a problem with that side of things at the moment?

Is that 'class attribute accessor'? If so, try just replacing it with

class << self; attr_accessor :app_name, :user; end

路路路

On 10/8/06, Tim Kuntz <timkuntz@gmail.com> wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

> cattr_accessor :app_name, :user

Thanks for the excellent contribution.

Ahh, I thought I'd added a typo when pasting in the app/user stuff off
the website, so I'd changed that (back, I thought) to attr_accessor. No
wonder it didn't work.

I just had a bit of a play but still no joy, I'll have to have another
look later because this does look pretty cool.

路路路

On Mon, 2006-10-09 at 12:31 +0900, Tim Kuntz wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

> cattr_accessor :app_name, :user

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

Yup, you weren't missing something, I was. :slight_smile: The tesly_reporter.rb has been updated to actually work, now. :slight_smile:

路路路

On Oct 8, 2006, at 8:31 PM, Tim Kuntz wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

cattr_accessor :app_name, :user

Thanks for the excellent contribution.

tim

Thanks for the feedback. I'll take a look at adding email support.

路路路

On Oct 8, 2006, at 6:41 AM, Robert MannI wrote:

It's great, I tested it.

Very easy to setup, clean interface, awesome.

Notifying me by email if test cases fail would probably be the ontly thing
that's missing for some kind of CI.

Thanks,
Rob

On 10/8/06, Robert MannI <robmnl@gmail.com> wrote:

AWESOME!

Will test this now.

I'd pay for something like this, if stable & always available.

On 10/8/06, Benjamin Curtis < ruby@bencurtis.com> wrote:
>
> Tesly Jr. (http://junior.tesly.com ) is a hosted web app that provides
> an HTML reporter for your unit tests. With an RSS feed that gets
> updated with your test results every time you run your tests, it's
> great for continuous integration. The web interface to your test
> results also helps to prove that you're actually running tests. :slight_smile:
>
> It's free and easy. Set up an account, download and configure the
> code that extends Test::Unit, and be amazed as lovely green bars show
> up on the web as you run your tests.
>
> --
> Building an e-commerce site with Rails?
> http://www.agilewebdevelopment.com/rails-ecommerce
>

Thanks for the suggestion... I forgot to switch mental gears from Rails to Ruby. :slight_smile: I ditched the class attributes in favor of plain 'ol constants.

路路路

On Oct 8, 2006, at 9:51 PM, Gregory Brown wrote:

On 10/8/06, Tim Kuntz <timkuntz@gmail.com> wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

> cattr_accessor :app_name, :user

Thanks for the excellent contribution.

Is that 'class attribute accessor'? If so, try just replacing it with

class << self; attr_accessor :app_name, :user; end

There were a couple of problems on my part that was keeping it form working. Download the revised tesly_reporter.rb and all should be well. :slight_smile: Sorry for the inconvenience.

路路路

On Oct 9, 2006, at 2:08 AM, Ross Bamford wrote:

On Mon, 2006-10-09 at 12:31 +0900, Tim Kuntz wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

cattr_accessor :app_name, :user

Ahh, I thought I'd added a typo when pasting in the app/user stuff off
the website, so I'd changed that (back, I thought) to attr_accessor. No
wonder it didn't work.

I just had a bit of a play but still no joy, I'll have to have another
look later because this does look pretty cool.

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

Hi --

路路路

On Mon, 9 Oct 2006, Gregory Brown wrote:

On 10/8/06, Tim Kuntz <timkuntz@gmail.com> wrote:

This is great. Easy to setup with my Rails tests.

Did run into a problem with the Ruby Test::Unit though. Seems as if there
are Rails dependencies (see line below) that aren't mentioned in the setup
instructions. I might be missing something obvious though.

> cattr_accessor :app_name, :user

Thanks for the excellent contribution.

Is that 'class attribute accessor'? If so, try just replacing it with

class << self; attr_accessor :app_name, :user; end

If it's the Rails cattr_accessor then it uses class variables rather
than instance variables. It wouldn't be a bad idea to rewrite it to
use instance variables, though -- or perhaps rename it -- since class
variables are not object-specific and are therefore not really capable
of storing object "attributes".

David

--
                   David A. Black | dblack@wobblini.net
Author of "Ruby for Rails" [1] | Ruby/Rails training & consultancy [3]
DABlog (DAB's Weblog) [2] | Co-director, Ruby Central, Inc. [4]
[1] Ruby for Rails | [3] http://www.rubypowerandlight.com
[2] http://dablog.rubypal.com | [4] http://www.rubycentral.org

As requested, you can now choose to receive an email if a test run doesn't pass 100%. :slight_smile:

路路路

--
Building an e-commerce site with Rails?
http://www.agilewebdevelopment.com/rails-ecommerce

On Oct 8, 2006, at 6:41 AM, Robert MannI wrote:

It's great, I tested it.

Very easy to setup, clean interface, awesome.

Notifying me by email if test cases fail would probably be the ontly thing
that's missing for some kind of CI.

Thanks,
Rob

On 10/8/06, Robert MannI <robmnl@gmail.com> wrote:

AWESOME!

Will test this now.

I'd pay for something like this, if stable & always available.

On 10/8/06, Benjamin Curtis < ruby@bencurtis.com> wrote:
>
> Tesly Jr. (http://junior.tesly.com ) is a hosted web app that provides
> an HTML reporter for your unit tests. With an RSS feed that gets
> updated with your test results every time you run your tests, it's
> great for continuous integration. The web interface to your test
> results also helps to prove that you're actually running tests. :slight_smile:
>
> It's free and easy. Set up an account, download and configure the
> code that extends Test::Unit, and be amazed as lovely green bars show
> up on the web as you run your tests.
>
> --
> Building an e-commerce site with Rails?
> http://www.agilewebdevelopment.com/rails-ecommerce
>

Yeah, that's got it, And it *is* pretty cool, too :slight_smile:

Thanks,
Ross

路路路

On Mon, 2006-10-09 at 21:55 +0900, Benjamin Curtis wrote:

There were a couple of problems on my part that was keeping it form
working. Download the revised tesly_reporter.rb and all should be
well. :slight_smile: Sorry for the inconvenience.

On Oct 9, 2006, at 2:08 AM, Ross Bamford wrote:

> On Mon, 2006-10-09 at 12:31 +0900, Tim Kuntz wrote:
>> This is great. Easy to setup with my Rails tests.
>>
>> Did run into a problem with the Ruby Test::Unit though. Seems as
>> if there
>> are Rails dependencies (see line below) that aren't mentioned in
>> the setup
>> instructions. I might be missing something obvious though.
>>
>>> cattr_accessor :app_name, :user
>
> Ahh, I thought I'd added a typo when pasting in the app/user stuff off
> the website, so I'd changed that (back, I thought) to
> attr_accessor. No
> wonder it didn't work.
>
> I just had a bit of a play but still no joy, I'll have to have another
> look later because this does look pretty cool.
>
> --
> Ross Bamford - rosco@roscopeco.REMOVE.co.uk
>
>

--
This email has been verified as Virus free
Virus Protection and more available at http://www.plus.net

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