##// END OF EJS Templates
Add example of using annotations in interact...
Add example of using annotations in interact The reason for using annotations is to use the syntax - our decorator has no advantages over passing kwargs to interact[ive]. So this adds a proper demo, with a 'Python 3 only' subheading.

File last commit:

r14717:d628b706
r15187:695150ef
Show More
tooltip.js
19 lines | 599 B | application/javascript | JavascriptLexer
//
// Test the tooltip
//
casper.notebook_test(function () {
var token = this.evaluate(function() {
return IPython.tooltip.extract_oir_token("C(");
});
this.test.assertEquals(token, ["C"], "tooltip token: C");
token = this.evaluate(function() {
return IPython.tooltip.extract_oir_token("MyClass(");
});
this.test.assertEquals(token, ["MyClass"], "tooltip token: MyClass");
token = this.evaluate(function() {
return IPython.tooltip.extract_oir_token("foo123(");
});
this.test.assertEquals(token, ["foo123"], "tooltip token: foo123");
});