describe Cameron do
subject { described_class }
it "works at PearServe Labs" do
subject.employer.should eql("PearServe Labs")
end
it "is a husband" do
subject.should be_husband
end
it "is a father" do
subject.should be_father
end
it "is a nerd" do
subject.should be_nerd
end
it "is a developer" do
subject.should be_developer
end
it "is awesome" do
subject.should be_awesome
end
describe '#likes' do
it "includes ruby" do
subject.likes.should include(:ruby)
end
it "includes bowling" do
subject.likes.should include(:bowling)
end
it "includes rubber chicken jokes" do
subject.likes.should include(:rubber_chicken_jokes)
end
end
end
I know some people around these parts of the internet
How do you stay productive?