summaryrefslogtreecommitdiff
path: root/spec/views/teams/index.html.erb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/teams/index.html.erb_spec.rb')
-rw-r--r--spec/views/teams/index.html.erb_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/views/teams/index.html.erb_spec.rb b/spec/views/teams/index.html.erb_spec.rb
new file mode 100644
index 0000000..e894f36
--- /dev/null
+++ b/spec/views/teams/index.html.erb_spec.rb
@@ -0,0 +1,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