Files
rmq/spec/device.rb
2013-07-29 15:37:44 -07:00

15 lines
296 B
Ruby

describe 'device' do
before do
@rmq = RubyMotionQuery::RMQ
end
it 'should return device from RMQ or an instance of rmq' do
@rmq.device.should == RubyMotionQuery::Device
rmq = RubyMotionQuery::RMQ.new
rmq.device.should == RubyMotionQuery::Device
end
# TODO finish
end