From 4d6be047f2fbd16507e0a53129adf3482e1503c8 Mon Sep 17 00:00:00 2001 From: pikesley Date: Mon, 18 Jan 2016 19:01:08 +0000 Subject: [PATCH] Now with Fish --- config/lookups.yml | 5 +++++ dump.rdb | 1 + spec/javascripts/dashboardSpec.js | 7 +++++++ 3 files changed, 13 insertions(+) create mode 100644 dump.rdb diff --git a/config/lookups.yml b/config/lookups.yml index f8aba72..892cf61 100644 --- a/config/lookups.yml +++ b/config/lookups.yml @@ -23,3 +23,8 @@ snake: special-fields: - Eaten - Food + +fish: + url: /fish + title: Fish + repo: pikesley/fish-data diff --git a/dump.rdb b/dump.rdb new file mode 100644 index 0000000..56af04e --- /dev/null +++ b/dump.rdb @@ -0,0 +1 @@ +REDIS0006ÿܳCðZÜòV \ No newline at end of file diff --git a/spec/javascripts/dashboardSpec.js b/spec/javascripts/dashboardSpec.js index 8560a17..2f98992 100644 --- a/spec/javascripts/dashboardSpec.js +++ b/spec/javascripts/dashboardSpec.js @@ -30,4 +30,11 @@ describe('dashboard', function () { }) }) }) + + describe('latestCell', function() { + it('generates a cell with the latest value', function() { + pending() + expect(latestCell(json)).toEqual() + }) + }) })