initial github commit

This commit is contained in:
2017-12-21 11:51:55 +01:00
commit 9936a38843
413 changed files with 12623 additions and 0 deletions
View File
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'action-list/organization-filter', 'Integration | Component | action list/organization filter', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{action-list/organization-filter}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#action-list/organization-filter}}
template block text
{{/action-list/organization-filter}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'action-list/project-filter', 'Integration | Component | action list/project filter', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{action-list/project-filter}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#action-list/project-filter}}
template block text
{{/action-list/project-filter}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'panda-image', 'Integration | Component | panda image', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{panda-image}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#panda-image}}
template block text
{{/panda-image}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'project/edit-active-project-scenario', 'Integration | Component | project/edit active project scenario', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{project/edit-active-project-scenario}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#project/edit-active-project-scenario}}
template block text
{{/project/edit-active-project-scenario}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'project/instance-action-value-display', 'Integration | Component | project/instance action value display', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{project/instance-action-value-display}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#project/instance-action-value-display}}
template block text
{{/project/instance-action-value-display}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'state-badge', 'Integration | Component | state badge', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{state-badge}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#state-badge}}
template block text
{{/state-badge}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'ui-multi-select', 'Integration | Component | ui multi select', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{ui-multi-select}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#ui-multi-select}}
template block text
{{/ui-multi-select}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'value-type-display', 'Integration | Component | value type display', {
integration: true
}
test 'it renders', (assert) ->
assert.expect 2
# Set any properties with @set 'myProperty', 'value'
# Handle any actions with @on 'myAction', (val) ->
@render hbs """{{value-type-display}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#value-type-display}}
template block text
{{/value-type-display}}
"""
assert.equal @$().text().trim(), 'template block text'