Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Ruby on Ales 2012 - Made in Japan

Ruby on Ales 2012 - Made in Japan

Presentation slides for Ruby on Ales 2012, March 02, 2012: http://ruby.onales.com/
SpeakerRate: http://speakerrate.com/talks/9379-made-in-japan-how-we-use-rails-in-the-land-of-ruby

Akira Matsuda

March 04, 2012
Tweet

More Decks by Akira Matsuda

Other Decks in Programming

Transcript

  1. a request spec ★ spec/requests/ales_spec.rb feature "Ales" do scenario 'creating

    an ale' do visit '/ales/new' ll_in 'ale_name', :with => 'ruby' ll_in 'ale_price', :with => '1' click_button 'Create Ale' page.should have_content('ruby') end end
  2. end