What is the difference between an it block and a specify block in RSpec?
subject { MovieList.add_new(10) }
specify { subject.should have(10).items }
it { subject.track_number.should == 10}
They seem to do the same job. Just checking to be sure.