summaryrefslogtreecommitdiff
path: root/spec/views/teams/index.html.erb_spec.rb
blob: e894f3668f6416b0ab28de4fb389d4edc9773265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

describe "teams/index" do
  before(:each) do
    assign(:teams, [
      stub_model(Team),
      stub_model(Team)
    ])
  end

  it "renders a list of teams" do
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
  end
end