1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Add support for video demos

This commit is contained in:
Mumshad Mannambeth 2017-07-13 11:47:20 -04:00
parent a35b31f815
commit 653c157263
7 changed files with 122 additions and 4 deletions

View file

@ -0,0 +1,17 @@
'use strict';
describe('Controller: VideoCtrl', function() {
// load the controller's module
beforeEach(module('webAppApp.video'));
var VideoCtrl;
// Initialize the controller and a mock scope
beforeEach(inject(function($controller) {
VideoCtrl = $controller('VideoCtrl', {});
}));
it('should ...', function() {
expect(1).to.equal(1);
});
});