2020-11-08 20:30:15 -07:00
|
|
|
"use strict";
|
2015-01-13 03:18:13 -07:00
|
|
|
|
2020-11-08 20:30:15 -07:00
|
|
|
describe("myApp.view2 module", function () {
|
|
|
|
|
beforeEach(module("myApp.view2"));
|
2015-01-13 03:18:13 -07:00
|
|
|
|
2020-11-08 20:30:15 -07:00
|
|
|
describe("view2 controller", function () {
|
|
|
|
|
it("should ....", inject(function ($controller) {
|
2015-01-13 03:18:13 -07:00
|
|
|
//spec body
|
2020-11-08 20:30:15 -07:00
|
|
|
var view2Ctrl = $controller("View2Ctrl");
|
2015-01-13 03:18:13 -07:00
|
|
|
expect(view2Ctrl).toBeDefined();
|
|
|
|
|
}));
|
|
|
|
|
});
|
2020-11-08 20:30:15 -07:00
|
|
|
});
|