generator-easy
Version:
An EASY stack generator, Express Angular Stylus Yeoman
20 lines (14 loc) • 551 B
text/coffeescript
'use strict'
describe 'Controller: <%= _.classify(name) %>Ctrl', () ->
# load the controller's module
beforeEach module '<%= _.camelize(appname) %>App'
<%= _.classify(name) %>Ctrl = {}
scope = {}
# Initialize the controller and a mock scope
beforeEach inject ($controller, $rootScope) ->
scope = $rootScope.$new()
<%= _.classify(name) %>Ctrl = $controller '<%= _.classify(name) %>Ctrl', {
$scope: scope
}
it 'should attach a list of awesomeThings to the scope', () ->
expect(scope.awesomeThings.length).toBe 3