Skip to content

Commit 0e74a6f

Browse files
author
Kelly Selden
committed
add fixtures
1 parent 7f1f643 commit 0e74a6f

File tree

8 files changed

+18
-0
lines changed

8 files changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Controller from '@ember/controller';
2+
3+
export default Controller.extend({
4+
controllerProperty: 'test'
5+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{this.controllerProperty}}

test/fixtures/codemods/ember-no-implicit-this-codemod/latest-node/my-app/codemods.log

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Controller from '@ember/controller';
2+
3+
export default Controller.extend({
4+
controllerProperty: 'test'
5+
});
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{controllerProperty}}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Controller from '@ember/controller';
2+
3+
export default Controller.extend({
4+
controllerProperty: 'test'
5+
});
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{this.controllerProperty}}

test/fixtures/codemods/ember-no-implicit-this-codemod/min-node/my-app/codemods.log

Whitespace-only changes.

0 commit comments

Comments
 (0)