mirror of
https://github.com/zhigang1992/rmq.git
synced 2026-01-12 22:51:53 +08:00
11 lines
176 B
Ruby
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
|