Skip to content
This repository was archived by the owner on May 26, 2019. It is now read-only.

Commit dee609c

Browse files
committed
update(testing): renames title of test. basics (emberjs/ember.js#15933)
This updates the title of the former "Unit Testing Basics" section to "Testing Basics" to avoid talking about "container" tests in an originally "unit" test focused section.
1 parent b93a7db commit dee609c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/testing/testing-controllers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_Container testing methods and computed properties follows previous patterns shown
2-
in [Unit Testing Basics] because Ember.Controller extends Ember.Object._
2+
in [Testing Basics] because Ember.Controller extends Ember.Object._
33

44
Controllers can be tested using the `setupTest` helper which is part
55
of the ember-qunit framework. The tests written for instances like `Ember.Controller` are

source/testing/testing-models.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_Container testing methods and computed properties follows previous patterns shown
2-
in [Unit Testing Basics] because DS.Model extends Ember.Object._
2+
in [Testing Basics] because DS.Model extends Ember.Object._
33

44
[Ember Data] Models can be tested in a module that uses the `setupTest` helper.
55

source/testing/testing-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_Container testing methods and computed properties follows previous patterns shown
2-
in [Unit Testing Basics] because Ember.Route extends Ember.Object._
2+
in [Testing Basics] because Ember.Route extends Ember.Object._
33

44
Testing routes can be done both via application tests or container tests. Application tests
55
will likely provide better coverage for routes because routes are typically used

0 commit comments

Comments
 (0)