mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
dca8c0cb6f
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92557 467b73ca-7a2a-4603-9d3b-597d59a354a9
128 lines
2.8 KiB
JavaScript
128 lines
2.8 KiB
JavaScript
|
|
describe 'Negative specs'
|
|
|
|
it 'should fail'
|
|
'test'.should.not_eql 'test'
|
|
end
|
|
|
|
it 'should fail with one faulty assertion'
|
|
'test'.should.equal 'test'
|
|
'test'.should.equal 'foo'
|
|
end
|
|
|
|
it 'should fail and print array with square braces'
|
|
[1,2].should.equal [1,3]
|
|
end
|
|
|
|
it 'should fail and print nested array'
|
|
[1, ['foo']].should.equal [1, ['bar', ['whatever', 1.0, { foo : 'bar', bar : { 1 : 2 } }]]]
|
|
end
|
|
|
|
it 'should fail and print html elements'
|
|
elem = document.createElement('a')
|
|
elem.setAttribute('href', 'http://vision-media.ca')
|
|
elem.should.not.eql elem
|
|
end
|
|
|
|
it 'should fail with selector for jQuery objects'
|
|
elem = { jquery : '1.3.1', selector : '.foobar' }
|
|
elem.should.eql 'foo'
|
|
end
|
|
|
|
it 'should fail with negative message'
|
|
'1'.should.not.be_true
|
|
end
|
|
|
|
it 'should fail with positive message'
|
|
false.should.be_true
|
|
end
|
|
|
|
it 'should fail saying an error was throw'
|
|
-{ throw 'foo' }.should.not.throw_error
|
|
end
|
|
|
|
it 'should fail saying which error has been thrown'
|
|
-{ throw 'foo' }.should.throw_error 'bar'
|
|
end
|
|
|
|
it 'should fail saying no error was thrown'
|
|
-{ }.should.throw_error 'foo'
|
|
end
|
|
|
|
it 'should fail saying no error matching was thrown'
|
|
-{ throw 'bar' }.should.throw_error(/foo/)
|
|
end
|
|
|
|
it 'should fail saying no error matching foo should be thrown'
|
|
-{ throw 'foo' }.should.not.throw_error(/foo/)
|
|
end
|
|
|
|
it 'should fail saying constructors'
|
|
-{ throw new TypeError('oh no') }.should.throw_error(Error)
|
|
end
|
|
|
|
it 'should fail saying multiple arg messages'
|
|
-{ throw new TypeError('oh no') }.should.throw_error(TypeError, /foo/)
|
|
end
|
|
|
|
it 'should fail with constructor name'
|
|
function Foo(){}
|
|
function Bar(){}
|
|
Bar.prototype.toString = function(){ return 'Bar error: oh no' }
|
|
-{ throw new Bar }.should.throw_error Foo
|
|
end
|
|
|
|
it 'should fail with function body string'
|
|
-{ 'foo' }.should.not.include 'foo'
|
|
end
|
|
|
|
it 'should fail with constructor name'
|
|
function Foo(){ this.toString = function(){ return '<Foo>' }}
|
|
foo = new Foo
|
|
foo.should.not.be_an_instance_of Foo
|
|
end
|
|
|
|
it 'should fail with message of first failure'
|
|
true.should.be_true
|
|
'bar'.should.match(/foo/gm)
|
|
'bar'.should.include 'foo'
|
|
end
|
|
|
|
it 'should fail with list'
|
|
['foo', 'bar'].should.include 'foo', 'car'
|
|
end
|
|
|
|
it 'should catch exceptions throw within specs'
|
|
throw new Error('Oh noes!')
|
|
end
|
|
|
|
it 'should catch improper exceptions'
|
|
throw 'oh noes'
|
|
end
|
|
|
|
it 'should catch proper exceptions'
|
|
iDoNotExist.neitherDoI()
|
|
end
|
|
|
|
end
|
|
|
|
describe 'Contexts'
|
|
before
|
|
JSpec.context = { iLike : 'cookies' }
|
|
end
|
|
|
|
after
|
|
JSpec.context = null
|
|
end
|
|
|
|
it 'should be replaceable'
|
|
iLike.should.equal 'cookies'
|
|
end
|
|
end
|
|
|
|
describe 'Misc'
|
|
it 'requires implementation'
|
|
end
|
|
end
|
|
|