Commit 82d2b78b by Your Name Committed by Jay Zoldak

update jasmine tests

parent 71be3deb
...@@ -37,12 +37,16 @@ describe 'All Content', -> ...@@ -37,12 +37,16 @@ describe 'All Content', ->
expect(@content.get 'subscribed').toEqual true expect(@content.get 'subscribed').toEqual true
it 'can be flagged for abuse', -> it 'can be flagged for abuse', ->
@content.flagAbuse @content.flagAbuse()
#temp_array = @content.get("abuse_flaggers")
#temp_array.push(window.user.get('id'))
#@content.set("abuse_flaggers",temp_array)
expect(@content.get 'abuse_flaggers').toEqual ['123', '567'] expect(@content.get 'abuse_flaggers').toEqual ['123', '567']
it 'can be unflagged for abuse', ->
temp_array = []
temp_array.push(window.user.get('id'))
@content.set("abuse_flaggers",temp_array)
@content.unflagAbuse()
expect(@content.get 'abuse_flaggers').toEqual []
describe 'Comments', -> describe 'Comments', ->
beforeEach -> beforeEach ->
@comment1 = new Comment {id: '123'} @comment1 = new Comment {id: '123'}
......
xdescribe "DiscussionContentView", -> describe "DiscussionContentView", ->
beforeEach -> beforeEach ->
setFixtures setFixtures
''' """
<div class="discussion-post"> <div class="discussion-post">
<header> <header>
<a data-tooltip="vote" data-role="discussion-vote" class="vote-btn discussion-vote discussion-vote-up" href="#"> <a data-tooltip="vote" data-role="discussion-vote" class="vote-btn discussion-vote discussion-vote-up" href="#">
...@@ -19,10 +19,28 @@ xdescribe "DiscussionContentView", -> ...@@ -19,10 +19,28 @@ xdescribe "DiscussionContentView", ->
<div data-tooltip="pin this thread" data-role="thread-pin" class="admin-pin discussion-pin notpinned"> <div data-tooltip="pin this thread" data-role="thread-pin" class="admin-pin discussion-pin notpinned">
<i class="icon"></i><span class="pin-label">Pin Thread</span></div> <i class="icon"></i><span class="pin-label">Pin Thread</span></div>
</div> </div>
''' """
@ @thread = new Thread {
id: '01234567',
user_id: '567',
course_id: 'mitX/999/test',
body: 'this is a thread',
created_at: '2013-04-03T20:08:39Z',
abuse_flaggers: ['123']
roles: []
}
@view = new DiscussionContentView({ model: @thread })
it 'defines the tag', ->
expect($('#jasmine-fixtures')).toExist
expect(@view.tagName).toBeDefined
expect(@view.el.tagName.toLowerCase()).toBe 'div'
it "defines the class", -> it "defines the class", ->
# spyOn @content, 'initialize' # spyOn @content, 'initialize'
myView = new DiscussionContentView(new Content) expect(@view.model).toBeDefined();
expect(myView.tagName).toBeDefined()
it 'is tied to the model', ->
expect(@view.model).toBeDefined();
\ No newline at end of file
...@@ -48,6 +48,4 @@ describe 'ResponseCommentShowView', -> ...@@ -48,6 +48,4 @@ describe 'ResponseCommentShowView', ->
it 'produces the correct HTML', -> it 'produces the correct HTML', ->
@view.render() @view.render()
expect(@view.el.innerHTML).toContainHtml """ expect(@view.el.innerHTML).toContain('"discussion-flag-abuse notflagged"')
<div
"""
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment