From anthonyeden at gmail.com Tue Nov 4 19:12:05 2008 From: anthonyeden at gmail.com (Anthony Eden) Date: Tue, 4 Nov 2008 19:12:05 -0500 Subject: [Activewarehouse-discuss] Repository Restructuring Complete Message-ID: I've restructured the AW repository by moving activewarehouse-etl to its own github project along with activewarehouse-mdx and activewarehouse-website. The activewarehouse project now contains only the plugin, thus allowing it to be installed directly with script/plugin install I've also upgraded dependencies and fixed up some of the requires. At this point I am going to put a stake in the ground and say that AW will no longer support versions of Rails less than 2.x. If someone still wants to use it on Rails 1.x then feel free to fork the repo and work out the details. My next task is to fix the web site and put out some new releases. Thanks to everyone for your continued support and involvement. Sincerely, Anthony Eden From anthonyeden at gmail.com Tue Nov 18 11:00:21 2008 From: anthonyeden at gmail.com (Anthony Eden) Date: Tue, 18 Nov 2008 11:00:21 -0500 Subject: [Activewarehouse-discuss] Running AW Unit Tests? Message-ID: Does anyone have the AW unit tests running from the AW master at Github? Second, I'm feeling quite annoyed at the current unit tests and am considering going through and refactoring all of them to use Shoulda. Any objections? -A From thibaut.barrere at gmail.com Tue Nov 18 11:01:59 2008 From: thibaut.barrere at gmail.com (=?ISO-8859-1?Q?Thibaut_Barr=E8re?=) Date: Tue, 18 Nov 2008 17:01:59 +0100 Subject: [Activewarehouse-discuss] Running AW Unit Tests? In-Reply-To: References: Message-ID: <4a68b8cf0811180801w7100c196v21806e66154dc9de@mail.gmail.com> > > Does anyone have the AW unit tests running from the AW master at Github? > Nope > Second, I'm feeling quite annoyed at the current unit tests and am > considering going through and refactoring all of them to use Shoulda. > Any objections? > +1! -- Thibaut -------------- next part -------------- An HTML attachment was scrubbed... URL: From dwlist at stellarmadness.org Tue Nov 18 11:08:59 2008 From: dwlist at stellarmadness.org (Darin Wilson) Date: Tue, 18 Nov 2008 08:08:59 -0800 Subject: [Activewarehouse-discuss] Running AW Unit Tests? In-Reply-To: Message-ID: Are you talking about just the AW plugin? I've got most of the ETL cases running - there are a few that aren't working due to idiosyncrasies with MySQL's bulk loading (which I'm working on fixing). Shoulda is certainly very readable - I just wish there were a way to run one test at a time (like you can with plain Test::Unit test cases). Maybe there is, and I just haven't found it? Anyway, that's not a dealbreaker, as far as I'm concerned. D > From: Anthony Eden > Date: Tue, 18 Nov 2008 11:00:21 -0500 > To: aw > Subject: [Activewarehouse-discuss] Running AW Unit Tests? > > Does anyone have the AW unit tests running from the AW master at Github? > > Second, I'm feeling quite annoyed at the current unit tests and am > considering going through and refactoring all of them to use Shoulda. > Any objections? > > -A > _______________________________________________ > Activewarehouse-discuss mailing list > Activewarehouse-discuss at rubyforge.org > http://rubyforge.org/mailman/listinfo/activewarehouse-discuss From mghaught at gmail.com Tue Nov 18 11:31:17 2008 From: mghaught at gmail.com (Marty Haught) Date: Tue, 18 Nov 2008 09:31:17 -0700 Subject: [Activewarehouse-discuss] Running AW Unit Tests? In-Reply-To: References: Message-ID: <57f29e620811180831s6a633b00u793521043766bb96@mail.gmail.com> Go for it Anthony. I'd be fine with it and it might be nice to start fresh. Cheers, Marty On Tue, Nov 18, 2008 at 9:08 AM, Darin Wilson wrote: > Are you talking about just the AW plugin? I've got most of the ETL cases > running - there are a few that aren't working due to idiosyncrasies with > MySQL's bulk loading (which I'm working on fixing). > > Shoulda is certainly very readable - I just wish there were a way to run one > test at a time (like you can with plain Test::Unit test cases). Maybe there > is, and I just haven't found it? Anyway, that's not a dealbreaker, as far as > I'm concerned. > > D > > >> From: Anthony Eden >> Date: Tue, 18 Nov 2008 11:00:21 -0500 >> To: aw >> Subject: [Activewarehouse-discuss] Running AW Unit Tests? >> >> Does anyone have the AW unit tests running from the AW master at Github? >> >> Second, I'm feeling quite annoyed at the current unit tests and am >> considering going through and refactoring all of them to use Shoulda. >> Any objections? >> >> -A >> _______________________________________________ >> Activewarehouse-discuss mailing list >> Activewarehouse-discuss at rubyforge.org >> http://rubyforge.org/mailman/listinfo/activewarehouse-discuss > > > _______________________________________________ > Activewarehouse-discuss mailing list > Activewarehouse-discuss at rubyforge.org > http://rubyforge.org/mailman/listinfo/activewarehouse-discuss > From anthonyeden at gmail.com Tue Nov 18 11:34:00 2008 From: anthonyeden at gmail.com (Anthony Eden) Date: Tue, 18 Nov 2008 11:34:00 -0500 Subject: [Activewarehouse-discuss] Running AW Unit Tests? In-Reply-To: References: Message-ID: On Tue, Nov 18, 2008 at 11:08 AM, Darin Wilson wrote: > Are you talking about just the AW plugin? Yes. > I've got most of the ETL cases > running - there are a few that aren't working due to idiosyncrasies with > MySQL's bulk loading (which I'm working on fixing). I only currently have 1 failing test with AW ETL and Postgres, so I'm not going to touch that one right now. > Shoulda is certainly very readable - I just wish there were a way to run one > test at a time (like you can with plain Test::Unit test cases). Maybe there > is, and I just haven't found it? Anyway, that's not a dealbreaker, as far as > I'm concerned. I'm not aware of a way, but in most cases I run autotest so it isn't absolutely necessary for me, although I agree it would be nice. -A From anthonyeden at gmail.com Tue Nov 18 14:26:03 2008 From: anthonyeden at gmail.com (Anthony Eden) Date: Tue, 18 Nov 2008 14:26:03 -0500 Subject: [Activewarehouse-discuss] Refactoring Tests Message-ID: I've started the refactoring of the tests in the refactor_tests branch of AW on github. Feel free to follow along: http://github.com/aeden/activewarehouse/tree/refactor_tests -A