This file contains hidden or 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
(ns finance.core | |
(:use [seesaw.core]) | |
(:require [seesaw.selector :as selector])) | |
(defn identify | |
"Given a root widget, find all the named widgets and set their Seesaw :id | |
so they can play nicely with select and everything." | |
[root] | |
(doseq [w (select root [:*])] | |
(if-let [n (.getName w)] |
This file contains hidden or 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
$(document).ready(function() {var formatter = new CucumberHTML.DOMFormatter($('.cucumber-report'));formatter.uri('src/test/resources/basic_arithmetic.feature'); | |
formatter.feature({ | |
"id": "basic-arithmetic", | |
"tags": [ | |
{ | |
"name": "@foo", | |
"line": 1 | |
} | |
], | |
"description": "", |
NewerOlder