describe '<%= moduleName %>', ->

  beforeEach ->

    module '<%= moduleName %>'
    module '<%= moduleName %>.controllers'

  describe 'DemoController', ->

    scope = null

    beforeEach inject ($rootScope, $controller) ->
      scope = $rootScope.$new()
      $controller 'DemoController',
        $scope: scope

    it 'should have an add method on $scope that adds two numbers', ->
      scope.add(5, 5)
      expect(scope.x).toBe(10);
