Skip to content

Commit 487b2e3

Browse files
author
Robert Jackson
committed
Add test cases for moduleForComponent look-a-likes.
1 parent 3716fc1 commit 487b2e3

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import moduleForComponent from '../helpers/module-for-component';
2+
import { test } from 'ember-qunit';
3+
4+
moduleForOtherComponent('foo-bar', 'Integration | Component | FooBar', {
5+
integration: true
6+
});
7+
8+
test('it does not get changed', function() {
9+
this.render(hbs`derp`);
10+
});
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import moduleForComponent from '../helpers/module-for-component';
2+
import { test } from 'qunit';
3+
4+
moduleForOtherComponent('foo-bar', 'Integration | Component | FooBar', {
5+
integration: true
6+
});
7+
8+
test('it does not get changed', function() {
9+
this.render(hbs`derp`);
10+
});
11+

0 commit comments

Comments
 (0)