mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-13 23:37:47 +00:00
Angularising Admin enterprises form
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
describe "enterpriseCtrl", ->
|
||||
ctrl = null
|
||||
scope = null
|
||||
Enterprise = null
|
||||
|
||||
beforeEach ->
|
||||
module('admin.enterprises')
|
||||
Enterprise =
|
||||
enterprise: "test enterprise"
|
||||
|
||||
inject ($controller) ->
|
||||
scope = {}
|
||||
ctrl = $controller 'enterpriseCtrl', {$scope: scope, Enterprise: Enterprise}
|
||||
|
||||
it "stores enterprise", ->
|
||||
expect(scope.enterprise).toBe Enterprise.enterprise
|
||||
Reference in New Issue
Block a user