Files
rmq/spec/debug.rb
2013-12-18 08:29:16 -08:00

11 lines
176 B
Ruby

describe 'debug' do
should 'assert value is true' do
a = true
RubyMotionQuery::Debug.assert(1==1) do
a = false
{}
end
a.should == true
end
end