aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBrian Ford2014-03-03 12:35:00 -0800
committerBrian Ford2014-03-03 12:35:00 -0800
commitfde61423cf13cb57be02a6f79581cb96c34335f9 (patch)
tree7ac98e14d7ae67f2b69f76a2690d1e00459ca8c8 /docs
parentc29d21f4cdc969991771d1e75c3a799eca7bf41a (diff)
downloadangular.js-fde61423cf13cb57be02a6f79581cb96c34335f9.tar.bz2
docs(guide/unit-testing): rename and fix formatting
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/unit-testing.ngdoc (renamed from docs/content/guide/dev_guide.unit-testing.ngdoc)12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/content/guide/dev_guide.unit-testing.ngdoc b/docs/content/guide/unit-testing.ngdoc
index 2fba61a3..8d41bedf 100644
--- a/docs/content/guide/dev_guide.unit-testing.ngdoc
+++ b/docs/content/guide/unit-testing.ngdoc
@@ -7,11 +7,11 @@ comes with almost no help from the compiler. For this reason we feel very strong
written in JavaScript needs to come with a strong set of tests. We have built many features into
Angular which makes testing your Angular applications easy. So there is no excuse for not testing.
-# It is all about NOT mixing concerns
+# Separation of Concerns
Unit testing as the name implies is about testing individual units of code. Unit tests try to
-answer questions such as "Did I think about the logic correctly?" or "Does the sort function order the list
-in the right order?"
+answer questions such as "Did I think about the logic correctly?" or "Does the sort function order
+the list in the right order?"
In order to answer such a question it is very important that we can isolate the unit of code under test.
That is because when we are testing the sort function we don't want to be forced into creating
@@ -33,8 +33,8 @@ function has mutated the DOM in the right way.
## With great power comes great responsibility
Angular is written with testability in mind, but it still requires that you do the right thing.
-We tried to make the right thing easy, but Angular is not magic. If you don't follow these guidelines
-you may very well end up with an untestable application.
+We tried to make the right thing easy, but if you ignore these guidelines you may end up with an
+untestable application.
## Dependency Injection
There are several ways in which you can get a hold of a dependency. You can:
@@ -321,7 +321,7 @@ describe('Unit testing great quotes', function() {
$compile = _$compile_;
$rootScope = _$rootScope_;
}));
-
+
it('Replaces the element with the appropriate content', function() {
// Compile a piece of HTML containing the directive
var element = $compile("<a-great-eye></a-great-eye>")($rootScope);