次の (簡単な) サービスのように、$rootScope の値に依存するサービスがあるとします。
angular.module('myServices', [])
.factory('rootValGetterService', function($rootScope) {
return {
getVal: function () {
return $rootScope.specialValue;
}
};
});
$rootScope に値を入れてこれを単体テストしたい場合、最善の方法は何ですか?