Re: [Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Shay Friedman
This doesn't work for me: require 'rubygems' require 'shoulda' class MyTest < Test::Unit::TestCase context "something" do should "be true" do assert true end end end Shay Friedman | Microsoft Visual C#/IronRuby MVP | Autho

Re: [Ironruby-core] Expectations for runs of irtests

2010-04-05 Thread Jim Deville
Yes and no. It is expected that some of the tests will have issues on CLR4, but I thought Tomas had fixed most of them. Either way, pull the latest from the v1.0 branch, and those binaries should work. JD > -Original Message- > From: ironruby-core-boun...@rubyforge.org [mailto:ironruby

Re: [Ironruby-core] Expectations for runs of irtests

2010-04-05 Thread Zac Brown
Hi, Just fyi, it doesn't appear that 'rbt' is an alias setup by dev.bat yet. I figured it out though that you meant Ruby\Tests. When I run the "..\Scripts\csc" in Ruby\Tests\Interop I get the following: E:\code\ironruby.git\Merlin\Main\Languages\Ruby\Tests\Interop>..\Scripts\csc Microsoft (R)

Re: [Ironruby-core] Expectations for runs of irtests

2010-04-05 Thread Jim Deville
For the 6k failures in netinterop, please try the following: 1) Setup the environment (dev.bat or dev.ps1 or whatever :)) 2) rbt 3) cd interop 4) ..\Scripts\csc This should recompile the fixtures so that they are linked against the the unsigned Git binaries instead of the delay-signed Merlin bina

Re: [Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Will Green
This what I did: cd %HOME%\dev ir -S gem install rake shoulda rails sqlite3-ironruby mocha --no-rdoc --no-ri git clone http://github.com/thoughtbot/shoulda.git cd shoulda ir -S rake test It appears to pass. Results are here: http://gist.github.com/356509 -- Will Green http://hotgazpacho.org/ On

Re: [Ironruby-core] Anyone interested in implementing Etc module for Mono?

2010-04-05 Thread Ryan Riley
By the way, if I've changed jobs since I signed my LCA, do I need to do it again for my current employer? Ryan On Sun, Apr 4, 2010 at 11:05 PM, Ryan Riley wrote: > Great. I've been working on cleaning up the file paths so that I can run > the specs (and irtests). The problem seems to be just ha

Re: [Ironruby-core] Expectations for runs of irtests

2010-04-05 Thread Zac Brown
Hi, This first link is irtests run with the latest github changes: http://dl.dropbox.com/u/3527783/irtests-04042010-ruby18.log This link is after I made a couple changes in Builtins\FileOps.cs, Builtins\KernelOps.cs and the associated MSpec tests: http://dl.dropbox.com/u/3527783/irtests-040520

Re: [Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Shay Friedman
When I run it, it doesn't find any test cases (even though I have one)... So nothing breaks because nothing is run. Thanks, Shay. Shay Friedman | Microsoft Visual C#/IronRuby MVP | Author of IronRuby Unleashed | Sela Technology Center Blog:

Re: [Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Will Green
Shoulda has a test suite. Have you run that to see what breaks? -- Will Green http://hotgazpacho.org/ On Mon, Apr 5, 2010 at 9:30 AM, Shay Friedman wrote: > I get the same problem with test-spec. Both frameworks enhance > Test::Unit and they both don't work... > > Thanks, > Shay. > > Shay Fried

Re: [Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Shay Friedman
I get the same problem with test-spec. Both frameworks enhance Test::Unit and they both don't work... Thanks, Shay. Shay Friedman wrote: > Hi there, > > I'm trying to use Shoulda to test code (not in a Rails project) and I > can't > get it to work. It seems like it doesn't convert the should s

[Ironruby-core] Has someone tried to use Shoulda with IronRuby?

2010-04-05 Thread Shay Friedman
Hi there, I'm trying to use Shoulda to test code (not in a Rails project) and I can't get it to work. It seems like it doesn't convert the should statements to test methods at all. Has anyone run into this before? Thanks, Shay. Shay Friedma