On Sun, Mar 29, 2009 at 11:19 PM, Zhenning Guan <[email protected]> wrote: > describe MovieList do > context "when first created" do > it "should be empty" do > movie_list = MovieList.new > movie_list.should be_empty > end > end > end > > > what is the context work for?
context() is an alias of describe(). They do the same thing, but they read differently in your spec. > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/rspec-users > _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
