write some tests

This commit is contained in:
Lisa Passing 2015-04-17 13:39:36 +02:00
parent 23e719ed78
commit 126c767fe1
3 changed files with 15 additions and 10 deletions

View File

@ -14,7 +14,7 @@ Controller = Ember.Controller.extend
deletingDone = => @set('isDeleting', false)
repo = @get('repo')
Ajax.ajax("/repos/#{repo.get('id')}/caches", "DELETE").then(deletingDone, deletingDone).then =>
Ajax.ajax("/repos/#{@get('cache.repository_id')}/caches", "DELETE").then(deletingDone, deletingDone).then =>
@set('model', {})
`export default Controller`

View File

@ -7,7 +7,6 @@ Route = TravisRoute.extend
setupController: (controller) ->
@_super.apply this, arguments
@controllerFor('repo').activate('caches')
controller.set('repo', @controllerFor('repo').get('repo'))
model: ->
repo = @modelFor('repo')

View File

@ -1,17 +1,23 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'caches-item', 'CachesItemComponent', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
needs: ['helper:format-time', 'helper:mb']
}
test 'it renders', ->
expect 2
# creates the component instance
component = @subject()
equal component._state, 'preRender'
attributes = {
repository_id: 10,
size: 1024 * 1024,
branch: "master",
last_modified: "2015-04-16T11:25:00Z",
type: "push"
}
# appends the component to the page
component = @subject(cache: attributes)
@append()
equal component._state, 'inDOM'
ok component.$().hasClass('push'), 'component should have a type class (push)'
equal component.$('.caches-branch').text().trim(), 'master', 'branch name should be displayed'
# equal component.$('.caches-date').text().trim(), '', ''
equal component.$('.caches-size').text().trim(), '1.00MB', 'size should be displayed'