blog.federicomaffei.com

current level - articles for beginners

Birthday Weekend.

Home, sweet home.

Read more...

Day 44.

source 'https://rubygems.org'

gem 'retrospective', group: :development

Read more...

Day 43.

Thursday has always been one of my least favorite days of the week. I can't really say why. Bad memories are often always associated with Thursdays, in my life.

Read more...

Day 42.

describe 'writing code' do
    it 'should be good dry code' do
        write_application('Meh.', 3)
        expect(page).to have_content 'Meh. (★★★☆☆)'
    end
end

Read more...

Day 41.

Federicos-MacBook-Air:yelp federicomaffei$ rspec

restaurants listing page
  no restaurants
    tells me there a no restaurants
  are restaurants
    should show the restaurant

restaurant creation form
  should be able to create a restaurant

restaurant edit form
  shound be able to edit a restaurant
  can delete restaurants

writing reviews
  should add the review of a resturant

Read more...