aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_track_controller_spec.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-05-21 10:51:23 +0000
committerfrancis <francis>2008-05-21 10:51:23 +0000
commit4945a4c4801326553be87c80a381afdd787841c3 (patch)
tree1da01bc40aa136b56c9fb080a3332bfe9060c4f9 /spec/controllers/admin_track_controller_spec.rb
parent2452b06d4b9a45d43b01af261b19a842a747dbe9 (diff)
Bullet list in credits on about page.
Rename rss_at to described_at. Email alerts based on date of description, not just creation date (so don't miss things that were created before alert but described only recently) Tidy up when described vs. newest is used for sort order. Caching of text extracted from attachments, and display in search results. Add some tests for things that aren't tested. (alright, maybe we *should* use git/hg if I'm going to keep doing this many separate commits on a train)
Diffstat (limited to 'spec/controllers/admin_track_controller_spec.rb')
-rw-r--r--spec/controllers/admin_track_controller_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/controllers/admin_track_controller_spec.rb b/spec/controllers/admin_track_controller_spec.rb
new file mode 100644
index 000000000..a7d983ab8
--- /dev/null
+++ b/spec/controllers/admin_track_controller_spec.rb
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + '/../spec_helper'
+
+describe AdminTrackController, "when administering tracks" do
+ integrate_views
+ fixtures :track_things
+
+ it "shows the list page" do
+ get :list
+ end
+end