'use strict'

angular.module 'socketMock', []
.factory 'socket', ->
  socket:
    connect: ->

    on: ->

    emit: ->

    receive: ->

  syncUpdates: ->
  unsyncUpdates: ->
