Remove scientific-name component

This commit is contained in:
Matthew Dillon 2015-06-12 11:23:04 -08:00
parent 140d4efd1e
commit 92d55265b2
3 changed files with 0 additions and 28 deletions

View file

@ -1,6 +0,0 @@
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'span',
strain: null, // passed in
});

View file

@ -1 +0,0 @@
<em>{{strain.species.speciesName}}</em> (strain {{strain-name strain=strain}})

View file

@ -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');
});