search for: rubininus

Displaying 2 results from an estimated 2 matches for "rubininus".

Did you mean: rubinus
2007 Mar 24
1
spec''ing metaprograming & rails CRUD
...d, but I''m sure each class will have a symbol table, etc. etc. The high level spec''s will look something like the following: specify "+ should concatenate two arrays" do example do [ 1, 2, 3 ] + [ 4, 5 ] end.should == [1, 2, 3, 4, 5] end How Rubininus creates the Arrays, sets them up in the symbol table/ creates an object id, etc. - All of this, the spec will never touch. How is one to do test first development on this sort of thing? If the methods involved get too big, they will probably be refactored into private methods. So how does...
2007 Mar 24
0
Using spec fixtures with integration tests
...ve a symbol table, etc. etc. The high level spec''s will look > something like the following: > > specify "+ should concatenate two arrays" do > example do > [ 1, 2, 3 ] + [ 4, 5 ] > end.should == [1, 2, 3, 4, 5] > end > > How Rubininus creates the Arrays, sets them up in the symbol table/ > creates an object id, etc. - All of this, the spec will never touch. > How is one to do test first development on this sort of thing? If > the methods involved get too big, they will probably be refactored > into private m...