require 'spec_helper' describe Hara do it 'Hara::Application should equal with App' do App = Class.new do include Hara::App end App.should == Hara::Application end it 'Hara.encode_msg & decode_msg should work' do msg = {'action' => 'hello_world', 'args' => ['hello', 'world']} Hara.decode_msg(Hara.encode_msg msg).should == msg end end