blob: b87ee9f0e8a63b5b2884b6e64d77ec9ca753c4f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe AdminTrackController, "when administering tracks" do
integrate_views
fixtures :users, :info_requests, :incoming_messages, :outgoing_messages, :comments, :info_request_events, :track_things
it "shows the list page" do
get :list
end
end
|