search for: klishin

Displaying 8 results from an estimated 8 matches for "klishin".

2007 Dec 12
3
Problem running examples with spec_server
Hello, Running RSpec without DRB works fine. However, "spec -X" runs without error but provides no output at all, even though the DRB spec_server seems to be fine. Has anyone got some suggestions as to why and how to fix? RSpec: 1-1-0RC1 build time 20071212145122 RSpec on Rails: Build time 20071212145122 Ruby: 1.8.6 Rails: 2-0-1 Win XP SP 2 Thanks very much, Dave -------------- next
2007 Oct 24
13
Ryan Bates' Multi-object Forms and the date_select
I think I''ve found a bug with Edge. I''m trying out Ryan Bates'' multi-object form technique shown in one of his Rails-casts (railscasts.com/episodes/75). If you use a fields_for similar to that shown (here: http://pastie.caboo.se/110480), you get a Server Error 500: ------ Status: 500 Internal Server Error Conflicting types for parameter containers. Expected an
2007 Dec 26
1
Typos on prototypejs.org
Guys maintaining prototypejs.org, have a look: http://dev.rubyonrails.org/ticket/10618 far from top priority tickets but we''re already overburdened by open tickets that need attention. MK --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send
2007 Dec 26
1
#10615 : inflection bug that affects classify method
Have a look: http://dev.rubyonrails.org/ticket/10615 This is actually a singularize method bug: >> "Business".singularize => "Busines" seems that classify uses singularize internally. Rick resolved it as invalid but I cannot understand why. Rick, could you shed some light on your decision? MK --~--~---------~--~----~------------~-------~--~----~ You received
2007 Aug 26
2
ror app with advanced rspec?
Hi! Can anybody link to some ror based project what is using rspec, so nuby as me can learn from it. So it should have updated and practising advanced rspec. After reading last threat about "testing behaviour or testing code?", I just realised that I would definitely learn something from app like that. Some casual googling didn''t help me this time. Thanks! Priit at
2007 Aug 26
4
howto regressions on environment.rb in Rails projects
How would one write a spec on environment.rb in a rails app? I was requiring a gem in environment.rb, but received a "MissingSourceError". Generally, ruby raises a LoadError when it can''t find a gem, but rails overrides this to raise a MissingSourceError (since rails is expecting a required file to be in lib/...). How would I write a spec to override this behavior,
2007 May 08
4
help with rspec''ing controller
Hi, I''m a rspec newbie. I''m having trouble with rspec''ing a simple controller to Create a record. I''ve tried a couple of approaches and still get errors: Mock ''remedy'' expected :save! with (any args) once, but received it 0 times -or- Mock ''Remedy'' received unexpected message :save with (no args). Here are my two
2007 Nov 17
0
spec.opts default --load-by and observers
When specing observers I usually put them into models directory under / spec. Then, when specs are run observer class can''t be found unless I remove --load-by mtime from spec.opts. My question is what''s the Big Idea behind loading specs in that order by default? Shouldn''t default spec.opts contain just formatting options? Because as you see it DOES cause problems