Shoulda incompatible with MacRuby
Greetings, Shoulda defines tests via: test_name = ["test: ", full_name, "should", "#{should[:name]}. " ].flatten.join(' ').to_sym test_unit_class.send(:define_method, test_name) do . . . end which fails because the ':' is treated as a selector part of the function name... I've patched it in my gem, for now... I'm not sure what the right answer is; maybe a patch for Shoulda that eliminates the ':' when running in MacRuby. -- Morgan
There's a ticket for that problem: http://www.macruby.org/trac/ticket/336, so it should be fixed, at some point :) On 20 mrt 2011, at 03:43, Morgan Schweers wrote:
Greetings, Shoulda defines tests via:
test_name = ["test: ", full_name, "should", "#{should[:name]}. "].flatten.join(' ').to_sym test_unit_class.send(:define_method, test_name) do . . . end
which fails because the ':' is treated as a selector part of the function name...
I've patched it in my gem, for now... I'm not sure what the right answer is; maybe a patch for Shoulda that eliminates the ':' when running in MacRuby.
-- Morgan
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (2)
-
Eloy Duran
-
Morgan Schweers