Slide 5
Slide 5 text
Changed State
car = Car.create()
expect(car.position).toEqual x: 0, y: 0
--------------------------------------------------------
car = Car.create()
car.moveTo x: 3, y: 4
expect(car.position).toEqual x: 3, y: 4
--------------------------------------------------------
Use only for testing public attributes (models)