Thibaut Barrère
2008-Dec-01 09:14 UTC
[Ironruby-core] What are the options to write tests, currently ?
Hello, I''m documenting myself to see what are the various options currently available to write IronRuby code to unit-tests C# assemblies. I gave MSpec a try and it''s already fine (http://gist.github.com/30685). Test::Unit seems to work well too (good work!) after a first test. Did anyone play with RSpec, Shoulda or anything else ? cheers Thibaut Barr?re -- LoGeek [blog] http://evolvingworker.com - tools for a better day [blog] http://blog.logeek.fr - about writing software -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20081201/d9ddbfa6/attachment.html>
Ben Hall
2008-Dec-01 15:03 UTC
[Ironruby-core] What are the options to write tests, currently ?
Still one or two outstanding issues around RSpec, but that is what you should be aiming for :) However, even with those issues fixed, running it on an actual system might not be the best idea due to some performance issues. MSpec is a good, if not very limited, and is what the team are using. I haven''t looked at Test::Unit implementation. On Mon, Dec 1, 2008 at 9:14 AM, Thibaut Barr?re <thibaut.barrere at gmail.com> wrote:> Hello, > I''m documenting myself to see what are the various options currently > available to write IronRuby code to unit-tests C# assemblies. > I gave MSpec a try and it''s already fine (http://gist.github.com/30685). > Test::Unit seems to work well too (good work!) after a first test. > Did anyone play with RSpec, Shoulda or anything else ? > cheers > Thibaut Barr?re > -- > LoGeek > [blog] http://evolvingworker.com - tools for a better day > [blog] http://blog.logeek.fr - about writing software > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > >
Jeff Dik
2008-Dec-05 15:33 UTC
[Ironruby-core] What are the options to write tests, currently ?
On Mon, Dec 1, 2008 at 4:14 AM, Thibaut Barr?re <thibaut.barrere at gmail.com> wrote:> Hello, > I''m documenting myself to see what are the various options currently > available to write IronRuby code to unit-tests C# assemblies. > I gave MSpec a try and it''s already fine (http://gist.github.com/30685). > Test::Unit seems to work well too (good work!) after a first test. > Did anyone play with RSpec, Shoulda or anything else ?I''ve been using Bacon without any problems after I commented out # e.backtrace.find_all { |line| line !~ /bin\/bacon|\/bacon\.rb:\d+/ }. # each_with_index { |line, i| # ErrorLog << "\t#{line}#{i==0 ? ": #@name - #{description}" : ""}\n" # } http://github.com/chneukirchen/bacon/tree/master I got RSpec to work after following somebody else''s instructions on this list, but it was too slow to be useful. I wrote a very basic "simple_autotest" script to run "rake spec" whenever a source file is saved. Thanks, Jeff> cheers > Thibaut Barr?re > -- > LoGeek > [blog] http://evolvingworker.com - tools for a better day > [blog] http://blog.logeek.fr - about writing software > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > >