summaryrefslogtreecommitdiff
path: root/spec/views/tournaments/index.html.erb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/tournaments/index.html.erb_spec.rb')
-rw-r--r--spec/views/tournaments/index.html.erb_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/views/tournaments/index.html.erb_spec.rb b/spec/views/tournaments/index.html.erb_spec.rb
new file mode 100644
index 0000000..bf36e06
--- /dev/null
+++ b/spec/views/tournaments/index.html.erb_spec.rb
@@ -0,0 +1,20 @@
+require 'spec_helper'
+
+describe "tournaments/index" do
+ before(:each) do
+ assign(:tournaments, [
+ stub_model(Tournament,
+ :game => nil
+ ),
+ stub_model(Tournament,
+ :game => nil
+ )
+ ])
+ end
+
+ it "renders a list of tournaments" do
+ render
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
+ assert_select "tr>td", :text => nil.to_s, :count => 2
+ end
+end