Any expectation that you’ll update the docs soon to catch up with the latest changes?
May we present, for your pleasure, Hobo version 0.4.3
Let’s see… what to tell you about the new stuff? There’s a nice little DSL for integration tests. Most of the goodness is already there with Rails (See Jamis Buck’s blog post). I’ve just added a few convenient methods for testing basic stuff like creating and viewing objects. Here’s a snippet from a test of the POD demo:
def test_user_creating
fred = fred_session
new_ad = fred.creates_and_visits(Advert,
:title => "my car",
:body => "is a nice car",
:category => cars)
fred.sees new_ad.title
fred.sees new_ad.body
fred.cant_create(User, :username => "Jim")
fred.cant_create(Category,
:name => "small furry creatures")
end
Neat eh?
Enjoy.
Any expectation that you’ll update the docs soon to catch up with the latest changes?
Que Barbaro !
How Excellent !
Thanks !
Hello,
I am very interested in this project and want to contribute but I’m mostly a html css guy. Let me know if I can help out.
thanks,
Just noticed that on the “Download & Getting Started” page it’s still listing 0.4.2 as the current version…
Thanks Blake - fixed
Thanks for this rails complements/addons.
I found that the Forums/Mailing List is empty. I think that is necesary to implement this now. An temporary option could be to generate a google groups o similar. This option is selected by AjaxScaffold by example.
Thanks in advance
I just did the Pod demo, and it worked perfectly. Smashing job, as some outside of the states say. For what it’s worth, I did run into this warning on a new project:
./script/../config/boot.rb:29:Warning: require_gem is obsolete. Use gem instead.
I am using Locomotive on a Mac and Rails version 1.2.1.
Carl,
While require_gem was deprecated in gem version 0.9.0, the bin stubs are still using it. To get rid of the warnings printed by rake or other bin stubs simply run ‘gem pristine –all’.
Amazing work, I have it working under Suse, and it is simply an amazing peice of work.
Thanks!