Skip to content

Commit

Permalink
update(testing): renames title of test. basics (emberjs/ember.js#15933)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jayjayjpg committed Feb 11, 2018
1 parent 1299c7d commit 33b9da0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/testing/testing-controllers.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_Container testing methods and computed properties follows previous patterns shown
in [Unit Testing Basics] because Ember.Controller extends Ember.Object._
in [Testing Basics] because Ember.Controller extends Ember.Object._

Controllers can be tested using the `setupTest` helper which is part
of the ember-qunit framework. The tests written for instances like `Ember.Controller` are
Expand Down
2 changes: 1 addition & 1 deletion source/testing/testing-models.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_Container testing methods and computed properties follows previous patterns shown
in [Unit Testing Basics] because DS.Model extends Ember.Object._
in [Testing Basics] because DS.Model extends Ember.Object._

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

Expand Down
2 changes: 1 addition & 1 deletion source/testing/testing-routes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_Container testing methods and computed properties follows previous patterns shown
in [Unit Testing Basics] because Ember.Route extends Ember.Object._
in [Testing Basics] because Ember.Route extends Ember.Object._

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

0 comments on commit 33b9da0

Please sign in to comment.