diff options
Diffstat (limited to 'spec/spec/text.js')
-rw-r--r-- | spec/spec/text.js | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/spec/spec/text.js b/spec/spec/text.js index 91ec7ae..39fba10 100644 --- a/spec/spec/text.js +++ b/spec/spec/text.js @@ -123,9 +123,9 @@ describe('Text', function() { text.text('It is\nJUST\na bear!') expect(text.node.childNodes.length).toBe(3) }) - it('stores the text value in the content reference', function() { + it('restores the content from the dom', function() { text.text('It is\nJUST\na bear!') - expect(text.content).toBe('It is\nJUST\na bear!') + expect(text.text()).toBe('It is\nJUST\na bear!') }) it('gets the given content of a text element without an argument', function() { text.text('It is another bear!') @@ -155,9 +155,9 @@ describe('Text', function() { expect(text.node.childNodes.length).toBe(1) expect(text.node.childNodes[0].nodeValue).toBe('It is not a bear!') }) - it('stores the text value in the content reference', function() { + it('restores the content from the dom', function() { text.plain('Just plain text!') - expect(text.content).toBe('Just plain text!') + expect(text.text()).toBe('Just plain text!') }) }) @@ -185,10 +185,6 @@ describe('Text', function() { text.clear() expect(text.node.childNodes.length).toBe(0) }) - it('clears the stored content value', function() { - text.text('Stored locally.') - expect(text.content).toBe('Stored locally.') - }) }) describe('lines()', function() { |