Ara Howard wrote:
> NAME
>    testy.rb
> 
> DESCRIPTION
>    a BDD testing framework for ruby that's mad at the world and plans
> to kick
>    it's ass in 80 freakin lines of code
> 
> SYNOPSIS
>    Testy.testing 'your code' do
>      test 'some behaviour' do |result|
>        ultimate = Ultimate.new
>        result.check :name, :expect => 42, :actual => ultimate.answer
>      end
>    end
> 

Hey Ara,

Interesting post and project. Nice work! I just tried to test testy.rb 
out and, maybe i'm overlooking something obvious, but when i run:

 ruby testy_test.rb (http://pastie.org/430735)

 Desktop$: ruby testy_testing.rb
 ---
 naming a student:
   retrieving a student's name:
     failure:
       expect:
         name:
       actual:
         name: Lake
   giving a student a name:
     failure:
       expect:
         name:
      actual:
        name: Jake


You see, the output does not contain the second Testy.testing() 
results...

What gives?


Thanks,

Lake
-- 
Posted via http://www.ruby-forum.com/.