Sha256: 2fbac149949458d093c797e217ced0a71a561b4894ce68cde685af1f7e3160d4
Contents?: true
Size: 509 Bytes
Versions: 1
Compression:
Stored size: 509 Bytes
Contents
'use strict'; describe('herald.artifact module', function() { beforeEach(module('myApp.artifact')); describe('app-version directive', function() { it('should print current version', function() { module(function($provide) { $provide.value('artifact', { version: 'TEST_VER' }); }); inject(function($compile, $rootScope) { var element = $compile('<span app-version></span>')($rootScope); expect(element.text()).toEqual('TEST_VER'); }); }); }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-herald-0.1.0 | lib/puppet-herald/public/components/artifact/artifact-directive_test.js |