Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts DATA.read # will print out what is below the __END__ line | |
__END__ | |
Hello | |
let me try some things |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dialog = $('<div />').appendTo(document.body); | |
// Close the dialog when the user clickes out of it. | |
$('body').on('mousedown', function(){ dialog.remove(); }); | |
dialog.on('mousedown', function(e){ | |
// Don't let clicks bouble-up to the body and remove the dialog. | |
e.stopPropagation(); | |
}); | |
// Open links in the dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SETUP | |
riot sanity test generic context | |
SETUP | |
- should get_mocked_once: get_mocked_once() Called 0 times. Expected 1 times. |