Skip to content

Commit e9d61db

Browse files
committed
Documentation fix.
Stable Version 0.3.1.
1 parent 69b0095 commit e9d61db

5 files changed

Lines changed: 32 additions & 32 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Jason Dobry",
33
"name": "angular-data-mocks",
44
"description": "A mock of angular-data for testing purposes.",
5-
"version": "0.3.0",
5+
"version": "0.3.1",
66
"homepage": "https://github.com/jmdobry/angular-data-mocks/",
77
"repository": {
88
"type": "git",

dist/angular-data-mocks.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @author Jason Dobry <jason.dobry@gmail.com>
33
* @file angular-data-mocks.js
4-
* @version 0.3.0 - Homepage <https://github.com/jmdobry/angular-data-mocks>
4+
* @version 0.3.1 - Homepage <https://github.com/jmdobry/angular-data-mocks>
55
* @copyright (c) 2014 Jason Dobry <https://github.com/jmdobry/>
66
* @license MIT <https://github.com/jmdobry/angular-data-mocks/blob/master/LICENSE>
77
*
@@ -598,8 +598,8 @@
598598

599599
/**
600600
* @doc interface
601-
* @id DSMock
602-
* @name DSMock
601+
* @id DS
602+
* @name DS
603603
* @description
604604
* A mock implementation of `DS` with helper methods for declaring and testing expectations.
605605
*
@@ -611,7 +611,7 @@
611611

612612
/**
613613
* @doc method
614-
* @id DSMock.methods:expect
614+
* @id DS.methods:expect
615615
* @name expect
616616
* @description
617617
* Create an expectation.
@@ -656,7 +656,7 @@
656656

657657
/**
658658
* @doc method
659-
* @id DSMock.methods:flush
659+
* @id DS.methods:flush
660660
* @name flush
661661
* @description
662662
* Flush the pending expectations.
@@ -705,7 +705,7 @@
705705

706706
/**
707707
* @doc method
708-
* @id DSMock.methods:verifyNoOutstandingExpectation
708+
* @id DS.methods:verifyNoOutstandingExpectation
709709
* @name verifyNoOutstandingExpectation
710710
* @description
711711
* Ensure that no expectations remain unfulfilled.
@@ -735,7 +735,7 @@
735735

736736
/**
737737
* @doc method
738-
* @id DSMock.methods:expectCreate
738+
* @id DS.methods:expectCreate
739739
* @name expectCreate
740740
* @description
741741
* Create an expectation that `DS.create` will be called.
@@ -757,7 +757,7 @@
757757
*/
758758
/**
759759
* @doc method
760-
* @id DSMock.methods:expectDestroy
760+
* @id DS.methods:expectDestroy
761761
* @name expectDestroy
762762
* @description
763763
* Create an expectation that `DS.destroy` will be called.
@@ -774,7 +774,7 @@
774774
*/
775775
/**
776776
* @doc method
777-
* @id DSMock.methods:expectDestroyAll
777+
* @id DS.methods:expectDestroyAll
778778
* @name expectDestroyAll
779779
* @description
780780
* Create an expectation that `DS.destroyAll` will be called.
@@ -799,7 +799,7 @@
799799
*/
800800
/**
801801
* @doc method
802-
* @id DSMock.methods:expectFind
802+
* @id DS.methods:expectFind
803803
* @name expectFind
804804
* @description
805805
* Create an expectation that `DS.find` will be called.
@@ -819,7 +819,7 @@
819819
*/
820820
/**
821821
* @doc method
822-
* @id DSMock.methods:expectFindAll
822+
* @id DS.methods:expectFindAll
823823
* @name expectFindAll
824824
* @description
825825
* Create an expectation that `DS.findAll` will be called.
@@ -847,7 +847,7 @@
847847
*/
848848
/**
849849
* @doc method
850-
* @id DSMock.methods:expectRefresh
850+
* @id DS.methods:expectRefresh
851851
* @name expectRefresh
852852
* @description
853853
* Create an expectation that `DS.refresh` will be called.
@@ -867,7 +867,7 @@
867867
*/
868868
/**
869869
* @doc method
870-
* @id DSMock.methods:expectSave
870+
* @id DS.methods:expectSave
871871
* @name expectSave
872872
* @description
873873
* Create an expectation that `DS.save` will be called.
@@ -887,7 +887,7 @@
887887
*/
888888
/**
889889
* @doc method
890-
* @id DSMock.methods:expectUpdate
890+
* @id DS.methods:expectUpdate
891891
* @name expectUpdate
892892
* @description
893893
* Create an expectation that `DS.update` will be called.
@@ -909,7 +909,7 @@
909909
*/
910910
/**
911911
* @doc method
912-
* @id DSMock.methods:expectUpdateAll
912+
* @id DS.methods:expectUpdateAll
913913
* @name expectUpdateAll
914914
* @description
915915
* Create an expectation that `DS.updateAll` will be called.

dist/angular-data-mocks.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-data-mocks",
33
"description": "A mock of angular-data for testing purposes.",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"homepage": "https://github.com/jmdobry/angular-data-mocks",
66
"repository": {
77
"type": "git",

src/angular-data-mocks.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -598,8 +598,8 @@
598598

599599
/**
600600
* @doc interface
601-
* @id DSMock
602-
* @name DSMock
601+
* @id DS
602+
* @name DS
603603
* @description
604604
* A mock implementation of `DS` with helper methods for declaring and testing expectations.
605605
*
@@ -611,7 +611,7 @@
611611

612612
/**
613613
* @doc method
614-
* @id DSMock.methods:expect
614+
* @id DS.methods:expect
615615
* @name expect
616616
* @description
617617
* Create an expectation.
@@ -656,7 +656,7 @@
656656

657657
/**
658658
* @doc method
659-
* @id DSMock.methods:flush
659+
* @id DS.methods:flush
660660
* @name flush
661661
* @description
662662
* Flush the pending expectations.
@@ -705,7 +705,7 @@
705705

706706
/**
707707
* @doc method
708-
* @id DSMock.methods:verifyNoOutstandingExpectation
708+
* @id DS.methods:verifyNoOutstandingExpectation
709709
* @name verifyNoOutstandingExpectation
710710
* @description
711711
* Ensure that no expectations remain unfulfilled.
@@ -735,7 +735,7 @@
735735

736736
/**
737737
* @doc method
738-
* @id DSMock.methods:expectCreate
738+
* @id DS.methods:expectCreate
739739
* @name expectCreate
740740
* @description
741741
* Create an expectation that `DS.create` will be called.
@@ -757,7 +757,7 @@
757757
*/
758758
/**
759759
* @doc method
760-
* @id DSMock.methods:expectDestroy
760+
* @id DS.methods:expectDestroy
761761
* @name expectDestroy
762762
* @description
763763
* Create an expectation that `DS.destroy` will be called.
@@ -774,7 +774,7 @@
774774
*/
775775
/**
776776
* @doc method
777-
* @id DSMock.methods:expectDestroyAll
777+
* @id DS.methods:expectDestroyAll
778778
* @name expectDestroyAll
779779
* @description
780780
* Create an expectation that `DS.destroyAll` will be called.
@@ -799,7 +799,7 @@
799799
*/
800800
/**
801801
* @doc method
802-
* @id DSMock.methods:expectFind
802+
* @id DS.methods:expectFind
803803
* @name expectFind
804804
* @description
805805
* Create an expectation that `DS.find` will be called.
@@ -819,7 +819,7 @@
819819
*/
820820
/**
821821
* @doc method
822-
* @id DSMock.methods:expectFindAll
822+
* @id DS.methods:expectFindAll
823823
* @name expectFindAll
824824
* @description
825825
* Create an expectation that `DS.findAll` will be called.
@@ -847,7 +847,7 @@
847847
*/
848848
/**
849849
* @doc method
850-
* @id DSMock.methods:expectRefresh
850+
* @id DS.methods:expectRefresh
851851
* @name expectRefresh
852852
* @description
853853
* Create an expectation that `DS.refresh` will be called.
@@ -867,7 +867,7 @@
867867
*/
868868
/**
869869
* @doc method
870-
* @id DSMock.methods:expectSave
870+
* @id DS.methods:expectSave
871871
* @name expectSave
872872
* @description
873873
* Create an expectation that `DS.save` will be called.
@@ -887,7 +887,7 @@
887887
*/
888888
/**
889889
* @doc method
890-
* @id DSMock.methods:expectUpdate
890+
* @id DS.methods:expectUpdate
891891
* @name expectUpdate
892892
* @description
893893
* Create an expectation that `DS.update` will be called.
@@ -909,7 +909,7 @@
909909
*/
910910
/**
911911
* @doc method
912-
* @id DSMock.methods:expectUpdateAll
912+
* @id DS.methods:expectUpdateAll
913913
* @name expectUpdateAll
914914
* @description
915915
* Create an expectation that `DS.updateAll` will be called.

0 commit comments

Comments
 (0)