Files
openfoodnetwork/spec/javascripts/unit/darkswarm/controllers/checkout_controller_spec.js.coffee
2014-04-08 12:58:37 +10:00

12 lines
246 B
CoffeeScript

describe "CheckoutCtrl", ->
ctrl = null
scope = null
order = null
beforeEach ->
module("Darkswarm")
order = {}
inject ($controller) ->
scope = {}
ctrl = $controller 'CheckoutCtrl', {$scope: scope, Order: order}