Remove scientific-name component
This commit is contained in:
parent
140d4efd1e
commit
92d55265b2
3 changed files with 0 additions and 28 deletions
|
@ -1,6 +0,0 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'span',
|
||||
strain: null, // passed in
|
||||
});
|
|
@ -1 +0,0 @@
|
|||
<em>{{strain.species.speciesName}}</em> (strain {{strain-name strain=strain}})
|
|
@ -1,21 +0,0 @@
|
|||
import {
|
||||
moduleForComponent,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleForComponent('scientific-name', {
|
||||
// specify the other units that are required for this test
|
||||
// needs: ['component:foo', 'helper:bar']
|
||||
});
|
||||
|
||||
test('it renders', function(assert) {
|
||||
assert.expect(2);
|
||||
|
||||
// creates the component instance
|
||||
var component = this.subject();
|
||||
assert.equal(component._state, 'preRender');
|
||||
|
||||
// renders the component to the page
|
||||
this.render();
|
||||
assert.equal(component._state, 'inDOM');
|
||||
});
|
Reference in a new issue