diff options
| author | Di Peng | 2011-06-03 15:22:43 -0700 | 
|---|---|---|
| committer | Di Peng | 2011-06-05 12:00:45 -0700 | 
| commit | 1eebb771e3940ddd6640ddc064d5fa6e539c536d (patch) | |
| tree | e9dd762dcfd512837646ac95deacd334bc766ffc /test/scenario/dslSpec.js | |
| parent | 9250fce19c39203c702f22fde43724e1a7a19544 (diff) | |
| download | angular.js-1eebb771e3940ddd6640ddc064d5fa6e539c536d.tar.bz2 | |
renamed $pause to $sleep AND $wait to $pause
Closes #207
Diffstat (limited to 'test/scenario/dslSpec.js')
| -rw-r--r-- | test/scenario/dslSpec.js | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js index 4e0042d0..e1918ca7 100644 --- a/test/scenario/dslSpec.js +++ b/test/scenario/dslSpec.js @@ -46,20 +46,20 @@ describe("angular.scenario.dsl", function() {        SpecRunner.prototype.addFutureAction;    }); -  describe('Wait', function() { -    it('should wait until resume to complete', function() { +  describe('Pause', function() { +    it('should pause until resume to complete', function() {        expect($window.resume).toBeUndefined(); -      $root.dsl.wait(); +      $root.dsl.pause();        expect(angular.isFunction($window.resume)).toBeTruthy();        expect($root.futureLog).toEqual([]);        $window.resume();        expect($root.futureLog). -        toEqual(['waiting for you to resume']); -      expect(eventLog).toContain('InteractiveWait'); +        toEqual(['pausing for you to resume']); +      expect(eventLog).toContain('InteractivePause');      });    }); -  describe('Pause', function() { +  describe('Sleep', function() {      beforeEach(function() {        $root.$window.setTimeout = function(fn, value) {          $root.timerValue = value; @@ -67,8 +67,8 @@ describe("angular.scenario.dsl", function() {        };      }); -    it('should pause for specified seconds', function() { -      $root.dsl.pause(10); +    it('should sleep for specified seconds', function() { +      $root.dsl.sleep(10);        expect($root.timerValue).toEqual(10000);        expect($root.futureResult).toEqual(10000);      });  | 
