Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Ben Taitelbaum

Ben Taitelbaum

Ben Taitelbaum has asked 8 questions and find answers to 27 problems.

Stats

677
EtPoint
197
Vote count
8
questions
27
answers

About

describe "Ben" do
  before(:each) do
    @ben = Factory.create(:ben)
  end

  it "has a passion for technology" do
    @ben.passions.should include(:programming)
    @ben.favorite_wastes_of_time.should include(:reddit)
    @ben.company.name.should be 'coshx'
  end
end