()
| 175 | describe('crud list methods', function () { |
| 176 | |
| 177 | var LocationMock = function() { |
| 178 | this.pathStr = ''; |
| 179 | this.path = function(path){ |
| 180 | return path ? this.pathStr = path : this.pathStr; |
| 181 | }; |
| 182 | }; |
| 183 | |
| 184 | var $location, crudListMethods; |
| 185 |
nothing calls this directly
no outgoing calls
no test coverage detected