search for: anonymous_class_with_loaded_modul

Displaying 1 result from an estimated 1 matches for "anonymous_class_with_loaded_modul".

2007 Aug 14
4
(no subject)
How would you spec out something like the following: def a_method x = Class.new do include Enumerable end # do something here with x end describe "The Anonymous Class" do before :each do @anonymous_class = mock Class Class.stub!(:new).and_return @anonymous_class end it "should create a new anonymous class" do