Acceptance Tests To create an acceptance test, run ember generate acceptance-test <name>. For example:
Rendering a Template One job of a route handler is rendering the appropriate template to the screen. By default
Input Helpers The {{input}} and {{textarea}} helpers in Ember.js are the easiest way to create common form controls
Testing Controllers Unit testing methods and computed properties follows previous patterns shown in Unit Testing Basics because Ember
Unit Testing Basics Unit tests are generally used to test a small piece of code and ensure that it is doing what was intended. Unlike acceptance
Using Ember Data Currently, our app is using hard-coded data for rentals in the rentals route handler to set the model
Query Parameters Query parameters are optional key-value pairs that appear to the right of the ? in a URL. For example, the following
Inspecting Objects via the Container Every Ember application has a container that maintains object instances for you. You can inspect these
Adding Nested Routes Up to this point, we've generated four top level routes. An about route
Handling Metadata Along with the records returned from your store, you'll likely need to handle some kind of metadata. Metadata is
Page 1 of 10