summaryrefslogtreecommitdiff
path: root/spec/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/alerts_controller_spec.rb160
-rw-r--r--spec/controllers/games_controller_spec.rb160
-rw-r--r--spec/controllers/main_controller_spec.rb5
-rw-r--r--spec/controllers/matches_controller_spec.rb160
-rw-r--r--spec/controllers/pms_controller_spec.rb160
-rw-r--r--spec/controllers/search_controller_spec.rb5
-rw-r--r--spec/controllers/servers_controller_spec.rb160
-rw-r--r--spec/controllers/teams_controller_spec.rb160
-rw-r--r--spec/controllers/tournaments_controller_spec.rb160
-rw-r--r--spec/controllers/users_controller_spec.rb5
10 files changed, 1135 insertions, 0 deletions
diff --git a/spec/controllers/alerts_controller_spec.rb b/spec/controllers/alerts_controller_spec.rb
new file mode 100644
index 0000000..82b031b
--- /dev/null
+++ b/spec/controllers/alerts_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe AlertsController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Alert. As you add validations to Alert, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { "author" => "" } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # AlertsController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all alerts as @alerts" do
+ alert = Alert.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:alerts).should eq([alert])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested alert as @alert" do
+ alert = Alert.create! valid_attributes
+ get :show, {:id => alert.to_param}, valid_session
+ assigns(:alert).should eq(alert)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new alert as @alert" do
+ get :new, {}, valid_session
+ assigns(:alert).should be_a_new(Alert)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested alert as @alert" do
+ alert = Alert.create! valid_attributes
+ get :edit, {:id => alert.to_param}, valid_session
+ assigns(:alert).should eq(alert)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Alert" do
+ expect {
+ post :create, {:alert => valid_attributes}, valid_session
+ }.to change(Alert, :count).by(1)
+ end
+
+ it "assigns a newly created alert as @alert" do
+ post :create, {:alert => valid_attributes}, valid_session
+ assigns(:alert).should be_a(Alert)
+ assigns(:alert).should be_persisted
+ end
+
+ it "redirects to the created alert" do
+ post :create, {:alert => valid_attributes}, valid_session
+ response.should redirect_to(Alert.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved alert as @alert" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Alert.any_instance.stub(:save).and_return(false)
+ post :create, {:alert => { "author" => "invalid value" }}, valid_session
+ assigns(:alert).should be_a_new(Alert)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Alert.any_instance.stub(:save).and_return(false)
+ post :create, {:alert => { "author" => "invalid value" }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested alert" do
+ alert = Alert.create! valid_attributes
+ # Assuming there are no other alerts in the database, this
+ # specifies that the Alert created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Alert.any_instance.should_receive(:update).with({ "author" => "" })
+ put :update, {:id => alert.to_param, :alert => { "author" => "" }}, valid_session
+ end
+
+ it "assigns the requested alert as @alert" do
+ alert = Alert.create! valid_attributes
+ put :update, {:id => alert.to_param, :alert => valid_attributes}, valid_session
+ assigns(:alert).should eq(alert)
+ end
+
+ it "redirects to the alert" do
+ alert = Alert.create! valid_attributes
+ put :update, {:id => alert.to_param, :alert => valid_attributes}, valid_session
+ response.should redirect_to(alert)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the alert as @alert" do
+ alert = Alert.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Alert.any_instance.stub(:save).and_return(false)
+ put :update, {:id => alert.to_param, :alert => { "author" => "invalid value" }}, valid_session
+ assigns(:alert).should eq(alert)
+ end
+
+ it "re-renders the 'edit' template" do
+ alert = Alert.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Alert.any_instance.stub(:save).and_return(false)
+ put :update, {:id => alert.to_param, :alert => { "author" => "invalid value" }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested alert" do
+ alert = Alert.create! valid_attributes
+ expect {
+ delete :destroy, {:id => alert.to_param}, valid_session
+ }.to change(Alert, :count).by(-1)
+ end
+
+ it "redirects to the alerts list" do
+ alert = Alert.create! valid_attributes
+ delete :destroy, {:id => alert.to_param}, valid_session
+ response.should redirect_to(alerts_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/games_controller_spec.rb b/spec/controllers/games_controller_spec.rb
new file mode 100644
index 0000000..ab8b6b2
--- /dev/null
+++ b/spec/controllers/games_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe GamesController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Game. As you add validations to Game, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { "name" => "MyText" } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # GamesController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all games as @games" do
+ game = Game.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:games).should eq([game])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested game as @game" do
+ game = Game.create! valid_attributes
+ get :show, {:id => game.to_param}, valid_session
+ assigns(:game).should eq(game)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new game as @game" do
+ get :new, {}, valid_session
+ assigns(:game).should be_a_new(Game)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested game as @game" do
+ game = Game.create! valid_attributes
+ get :edit, {:id => game.to_param}, valid_session
+ assigns(:game).should eq(game)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Game" do
+ expect {
+ post :create, {:game => valid_attributes}, valid_session
+ }.to change(Game, :count).by(1)
+ end
+
+ it "assigns a newly created game as @game" do
+ post :create, {:game => valid_attributes}, valid_session
+ assigns(:game).should be_a(Game)
+ assigns(:game).should be_persisted
+ end
+
+ it "redirects to the created game" do
+ post :create, {:game => valid_attributes}, valid_session
+ response.should redirect_to(Game.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved game as @game" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Game.any_instance.stub(:save).and_return(false)
+ post :create, {:game => { "name" => "invalid value" }}, valid_session
+ assigns(:game).should be_a_new(Game)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Game.any_instance.stub(:save).and_return(false)
+ post :create, {:game => { "name" => "invalid value" }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested game" do
+ game = Game.create! valid_attributes
+ # Assuming there are no other games in the database, this
+ # specifies that the Game created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Game.any_instance.should_receive(:update).with({ "name" => "MyText" })
+ put :update, {:id => game.to_param, :game => { "name" => "MyText" }}, valid_session
+ end
+
+ it "assigns the requested game as @game" do
+ game = Game.create! valid_attributes
+ put :update, {:id => game.to_param, :game => valid_attributes}, valid_session
+ assigns(:game).should eq(game)
+ end
+
+ it "redirects to the game" do
+ game = Game.create! valid_attributes
+ put :update, {:id => game.to_param, :game => valid_attributes}, valid_session
+ response.should redirect_to(game)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the game as @game" do
+ game = Game.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Game.any_instance.stub(:save).and_return(false)
+ put :update, {:id => game.to_param, :game => { "name" => "invalid value" }}, valid_session
+ assigns(:game).should eq(game)
+ end
+
+ it "re-renders the 'edit' template" do
+ game = Game.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Game.any_instance.stub(:save).and_return(false)
+ put :update, {:id => game.to_param, :game => { "name" => "invalid value" }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested game" do
+ game = Game.create! valid_attributes
+ expect {
+ delete :destroy, {:id => game.to_param}, valid_session
+ }.to change(Game, :count).by(-1)
+ end
+
+ it "redirects to the games list" do
+ game = Game.create! valid_attributes
+ delete :destroy, {:id => game.to_param}, valid_session
+ response.should redirect_to(games_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/main_controller_spec.rb b/spec/controllers/main_controller_spec.rb
new file mode 100644
index 0000000..247e21d
--- /dev/null
+++ b/spec/controllers/main_controller_spec.rb
@@ -0,0 +1,5 @@
+require 'spec_helper'
+
+describe MainController do
+
+end
diff --git a/spec/controllers/matches_controller_spec.rb b/spec/controllers/matches_controller_spec.rb
new file mode 100644
index 0000000..1f7adf8
--- /dev/null
+++ b/spec/controllers/matches_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe MatchesController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Match. As you add validations to Match, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { "tournament" => "" } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # MatchesController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all matches as @matches" do
+ match = Match.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:matches).should eq([match])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested match as @match" do
+ match = Match.create! valid_attributes
+ get :show, {:id => match.to_param}, valid_session
+ assigns(:match).should eq(match)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new match as @match" do
+ get :new, {}, valid_session
+ assigns(:match).should be_a_new(Match)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested match as @match" do
+ match = Match.create! valid_attributes
+ get :edit, {:id => match.to_param}, valid_session
+ assigns(:match).should eq(match)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Match" do
+ expect {
+ post :create, {:match => valid_attributes}, valid_session
+ }.to change(Match, :count).by(1)
+ end
+
+ it "assigns a newly created match as @match" do
+ post :create, {:match => valid_attributes}, valid_session
+ assigns(:match).should be_a(Match)
+ assigns(:match).should be_persisted
+ end
+
+ it "redirects to the created match" do
+ post :create, {:match => valid_attributes}, valid_session
+ response.should redirect_to(Match.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved match as @match" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Match.any_instance.stub(:save).and_return(false)
+ post :create, {:match => { "tournament" => "invalid value" }}, valid_session
+ assigns(:match).should be_a_new(Match)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Match.any_instance.stub(:save).and_return(false)
+ post :create, {:match => { "tournament" => "invalid value" }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested match" do
+ match = Match.create! valid_attributes
+ # Assuming there are no other matches in the database, this
+ # specifies that the Match created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Match.any_instance.should_receive(:update).with({ "tournament" => "" })
+ put :update, {:id => match.to_param, :match => { "tournament" => "" }}, valid_session
+ end
+
+ it "assigns the requested match as @match" do
+ match = Match.create! valid_attributes
+ put :update, {:id => match.to_param, :match => valid_attributes}, valid_session
+ assigns(:match).should eq(match)
+ end
+
+ it "redirects to the match" do
+ match = Match.create! valid_attributes
+ put :update, {:id => match.to_param, :match => valid_attributes}, valid_session
+ response.should redirect_to(match)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the match as @match" do
+ match = Match.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Match.any_instance.stub(:save).and_return(false)
+ put :update, {:id => match.to_param, :match => { "tournament" => "invalid value" }}, valid_session
+ assigns(:match).should eq(match)
+ end
+
+ it "re-renders the 'edit' template" do
+ match = Match.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Match.any_instance.stub(:save).and_return(false)
+ put :update, {:id => match.to_param, :match => { "tournament" => "invalid value" }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested match" do
+ match = Match.create! valid_attributes
+ expect {
+ delete :destroy, {:id => match.to_param}, valid_session
+ }.to change(Match, :count).by(-1)
+ end
+
+ it "redirects to the matches list" do
+ match = Match.create! valid_attributes
+ delete :destroy, {:id => match.to_param}, valid_session
+ response.should redirect_to(matches_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/pms_controller_spec.rb b/spec/controllers/pms_controller_spec.rb
new file mode 100644
index 0000000..f0822db
--- /dev/null
+++ b/spec/controllers/pms_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe PmsController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Pm. As you add validations to Pm, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { "author" => "" } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # PmsController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all pms as @pms" do
+ pm = Pm.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:pms).should eq([pm])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested pm as @pm" do
+ pm = Pm.create! valid_attributes
+ get :show, {:id => pm.to_param}, valid_session
+ assigns(:pm).should eq(pm)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new pm as @pm" do
+ get :new, {}, valid_session
+ assigns(:pm).should be_a_new(Pm)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested pm as @pm" do
+ pm = Pm.create! valid_attributes
+ get :edit, {:id => pm.to_param}, valid_session
+ assigns(:pm).should eq(pm)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Pm" do
+ expect {
+ post :create, {:pm => valid_attributes}, valid_session
+ }.to change(Pm, :count).by(1)
+ end
+
+ it "assigns a newly created pm as @pm" do
+ post :create, {:pm => valid_attributes}, valid_session
+ assigns(:pm).should be_a(Pm)
+ assigns(:pm).should be_persisted
+ end
+
+ it "redirects to the created pm" do
+ post :create, {:pm => valid_attributes}, valid_session
+ response.should redirect_to(Pm.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved pm as @pm" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Pm.any_instance.stub(:save).and_return(false)
+ post :create, {:pm => { "author" => "invalid value" }}, valid_session
+ assigns(:pm).should be_a_new(Pm)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Pm.any_instance.stub(:save).and_return(false)
+ post :create, {:pm => { "author" => "invalid value" }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested pm" do
+ pm = Pm.create! valid_attributes
+ # Assuming there are no other pms in the database, this
+ # specifies that the Pm created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Pm.any_instance.should_receive(:update).with({ "author" => "" })
+ put :update, {:id => pm.to_param, :pm => { "author" => "" }}, valid_session
+ end
+
+ it "assigns the requested pm as @pm" do
+ pm = Pm.create! valid_attributes
+ put :update, {:id => pm.to_param, :pm => valid_attributes}, valid_session
+ assigns(:pm).should eq(pm)
+ end
+
+ it "redirects to the pm" do
+ pm = Pm.create! valid_attributes
+ put :update, {:id => pm.to_param, :pm => valid_attributes}, valid_session
+ response.should redirect_to(pm)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the pm as @pm" do
+ pm = Pm.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Pm.any_instance.stub(:save).and_return(false)
+ put :update, {:id => pm.to_param, :pm => { "author" => "invalid value" }}, valid_session
+ assigns(:pm).should eq(pm)
+ end
+
+ it "re-renders the 'edit' template" do
+ pm = Pm.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Pm.any_instance.stub(:save).and_return(false)
+ put :update, {:id => pm.to_param, :pm => { "author" => "invalid value" }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested pm" do
+ pm = Pm.create! valid_attributes
+ expect {
+ delete :destroy, {:id => pm.to_param}, valid_session
+ }.to change(Pm, :count).by(-1)
+ end
+
+ it "redirects to the pms list" do
+ pm = Pm.create! valid_attributes
+ delete :destroy, {:id => pm.to_param}, valid_session
+ response.should redirect_to(pms_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/search_controller_spec.rb b/spec/controllers/search_controller_spec.rb
new file mode 100644
index 0000000..73248fb
--- /dev/null
+++ b/spec/controllers/search_controller_spec.rb
@@ -0,0 +1,5 @@
+require 'spec_helper'
+
+describe SearchController do
+
+end
diff --git a/spec/controllers/servers_controller_spec.rb b/spec/controllers/servers_controller_spec.rb
new file mode 100644
index 0000000..c6f4fa6
--- /dev/null
+++ b/spec/controllers/servers_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe ServersController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Server. As you add validations to Server, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # ServersController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all servers as @servers" do
+ server = Server.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:servers).should eq([server])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested server as @server" do
+ server = Server.create! valid_attributes
+ get :show, {:id => server.to_param}, valid_session
+ assigns(:server).should eq(server)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new server as @server" do
+ get :new, {}, valid_session
+ assigns(:server).should be_a_new(Server)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested server as @server" do
+ server = Server.create! valid_attributes
+ get :edit, {:id => server.to_param}, valid_session
+ assigns(:server).should eq(server)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Server" do
+ expect {
+ post :create, {:server => valid_attributes}, valid_session
+ }.to change(Server, :count).by(1)
+ end
+
+ it "assigns a newly created server as @server" do
+ post :create, {:server => valid_attributes}, valid_session
+ assigns(:server).should be_a(Server)
+ assigns(:server).should be_persisted
+ end
+
+ it "redirects to the created server" do
+ post :create, {:server => valid_attributes}, valid_session
+ response.should redirect_to(Server.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved server as @server" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Server.any_instance.stub(:save).and_return(false)
+ post :create, {:server => { }}, valid_session
+ assigns(:server).should be_a_new(Server)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Server.any_instance.stub(:save).and_return(false)
+ post :create, {:server => { }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested server" do
+ server = Server.create! valid_attributes
+ # Assuming there are no other servers in the database, this
+ # specifies that the Server created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Server.any_instance.should_receive(:update).with({ "these" => "params" })
+ put :update, {:id => server.to_param, :server => { "these" => "params" }}, valid_session
+ end
+
+ it "assigns the requested server as @server" do
+ server = Server.create! valid_attributes
+ put :update, {:id => server.to_param, :server => valid_attributes}, valid_session
+ assigns(:server).should eq(server)
+ end
+
+ it "redirects to the server" do
+ server = Server.create! valid_attributes
+ put :update, {:id => server.to_param, :server => valid_attributes}, valid_session
+ response.should redirect_to(server)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the server as @server" do
+ server = Server.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Server.any_instance.stub(:save).and_return(false)
+ put :update, {:id => server.to_param, :server => { }}, valid_session
+ assigns(:server).should eq(server)
+ end
+
+ it "re-renders the 'edit' template" do
+ server = Server.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Server.any_instance.stub(:save).and_return(false)
+ put :update, {:id => server.to_param, :server => { }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested server" do
+ server = Server.create! valid_attributes
+ expect {
+ delete :destroy, {:id => server.to_param}, valid_session
+ }.to change(Server, :count).by(-1)
+ end
+
+ it "redirects to the servers list" do
+ server = Server.create! valid_attributes
+ delete :destroy, {:id => server.to_param}, valid_session
+ response.should redirect_to(servers_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/teams_controller_spec.rb b/spec/controllers/teams_controller_spec.rb
new file mode 100644
index 0000000..9c74d89
--- /dev/null
+++ b/spec/controllers/teams_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe TeamsController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Team. As you add validations to Team, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # TeamsController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all teams as @teams" do
+ team = Team.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:teams).should eq([team])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested team as @team" do
+ team = Team.create! valid_attributes
+ get :show, {:id => team.to_param}, valid_session
+ assigns(:team).should eq(team)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new team as @team" do
+ get :new, {}, valid_session
+ assigns(:team).should be_a_new(Team)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested team as @team" do
+ team = Team.create! valid_attributes
+ get :edit, {:id => team.to_param}, valid_session
+ assigns(:team).should eq(team)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Team" do
+ expect {
+ post :create, {:team => valid_attributes}, valid_session
+ }.to change(Team, :count).by(1)
+ end
+
+ it "assigns a newly created team as @team" do
+ post :create, {:team => valid_attributes}, valid_session
+ assigns(:team).should be_a(Team)
+ assigns(:team).should be_persisted
+ end
+
+ it "redirects to the created team" do
+ post :create, {:team => valid_attributes}, valid_session
+ response.should redirect_to(Team.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved team as @team" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Team.any_instance.stub(:save).and_return(false)
+ post :create, {:team => { }}, valid_session
+ assigns(:team).should be_a_new(Team)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Team.any_instance.stub(:save).and_return(false)
+ post :create, {:team => { }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested team" do
+ team = Team.create! valid_attributes
+ # Assuming there are no other teams in the database, this
+ # specifies that the Team created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Team.any_instance.should_receive(:update).with({ "these" => "params" })
+ put :update, {:id => team.to_param, :team => { "these" => "params" }}, valid_session
+ end
+
+ it "assigns the requested team as @team" do
+ team = Team.create! valid_attributes
+ put :update, {:id => team.to_param, :team => valid_attributes}, valid_session
+ assigns(:team).should eq(team)
+ end
+
+ it "redirects to the team" do
+ team = Team.create! valid_attributes
+ put :update, {:id => team.to_param, :team => valid_attributes}, valid_session
+ response.should redirect_to(team)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the team as @team" do
+ team = Team.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Team.any_instance.stub(:save).and_return(false)
+ put :update, {:id => team.to_param, :team => { }}, valid_session
+ assigns(:team).should eq(team)
+ end
+
+ it "re-renders the 'edit' template" do
+ team = Team.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Team.any_instance.stub(:save).and_return(false)
+ put :update, {:id => team.to_param, :team => { }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested team" do
+ team = Team.create! valid_attributes
+ expect {
+ delete :destroy, {:id => team.to_param}, valid_session
+ }.to change(Team, :count).by(-1)
+ end
+
+ it "redirects to the teams list" do
+ team = Team.create! valid_attributes
+ delete :destroy, {:id => team.to_param}, valid_session
+ response.should redirect_to(teams_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/tournaments_controller_spec.rb b/spec/controllers/tournaments_controller_spec.rb
new file mode 100644
index 0000000..f7b6e19
--- /dev/null
+++ b/spec/controllers/tournaments_controller_spec.rb
@@ -0,0 +1,160 @@
+require 'spec_helper'
+
+# This spec was generated by rspec-rails when you ran the scaffold generator.
+# It demonstrates how one might use RSpec to specify the controller code that
+# was generated by Rails when you ran the scaffold generator.
+#
+# It assumes that the implementation code is generated by the rails scaffold
+# generator. If you are using any extension libraries to generate different
+# controller code, this generated spec may or may not pass.
+#
+# It only uses APIs available in rails and/or rspec-rails. There are a number
+# of tools you can use to make these specs even more expressive, but we're
+# sticking to rails and rspec-rails APIs to keep things simple and stable.
+#
+# Compared to earlier versions of this generator, there is very limited use of
+# stubs and message expectations in this spec. Stubs are only used when there
+# is no simpler way to get a handle on the object needed for the example.
+# Message expectations are only used when there is no simpler way to specify
+# that an instance is receiving a specific message.
+
+describe TournamentsController do
+
+ # This should return the minimal set of attributes required to create a valid
+ # Tournament. As you add validations to Tournament, be sure to
+ # adjust the attributes here as well.
+ let(:valid_attributes) { { "game" => "" } }
+
+ # This should return the minimal set of values that should be in the session
+ # in order to pass any filters (e.g. authentication) defined in
+ # TournamentsController. Be sure to keep this updated too.
+ let(:valid_session) { {} }
+
+ describe "GET index" do
+ it "assigns all tournaments as @tournaments" do
+ tournament = Tournament.create! valid_attributes
+ get :index, {}, valid_session
+ assigns(:tournaments).should eq([tournament])
+ end
+ end
+
+ describe "GET show" do
+ it "assigns the requested tournament as @tournament" do
+ tournament = Tournament.create! valid_attributes
+ get :show, {:id => tournament.to_param}, valid_session
+ assigns(:tournament).should eq(tournament)
+ end
+ end
+
+ describe "GET new" do
+ it "assigns a new tournament as @tournament" do
+ get :new, {}, valid_session
+ assigns(:tournament).should be_a_new(Tournament)
+ end
+ end
+
+ describe "GET edit" do
+ it "assigns the requested tournament as @tournament" do
+ tournament = Tournament.create! valid_attributes
+ get :edit, {:id => tournament.to_param}, valid_session
+ assigns(:tournament).should eq(tournament)
+ end
+ end
+
+ describe "POST create" do
+ describe "with valid params" do
+ it "creates a new Tournament" do
+ expect {
+ post :create, {:tournament => valid_attributes}, valid_session
+ }.to change(Tournament, :count).by(1)
+ end
+
+ it "assigns a newly created tournament as @tournament" do
+ post :create, {:tournament => valid_attributes}, valid_session
+ assigns(:tournament).should be_a(Tournament)
+ assigns(:tournament).should be_persisted
+ end
+
+ it "redirects to the created tournament" do
+ post :create, {:tournament => valid_attributes}, valid_session
+ response.should redirect_to(Tournament.last)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns a newly created but unsaved tournament as @tournament" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Tournament.any_instance.stub(:save).and_return(false)
+ post :create, {:tournament => { "game" => "invalid value" }}, valid_session
+ assigns(:tournament).should be_a_new(Tournament)
+ end
+
+ it "re-renders the 'new' template" do
+ # Trigger the behavior that occurs when invalid params are submitted
+ Tournament.any_instance.stub(:save).and_return(false)
+ post :create, {:tournament => { "game" => "invalid value" }}, valid_session
+ response.should render_template("new")
+ end
+ end
+ end
+
+ describe "PUT update" do
+ describe "with valid params" do
+ it "updates the requested tournament" do
+ tournament = Tournament.create! valid_attributes
+ # Assuming there are no other tournaments in the database, this
+ # specifies that the Tournament created on the previous line
+ # receives the :update_attributes message with whatever params are
+ # submitted in the request.
+ Tournament.any_instance.should_receive(:update).with({ "game" => "" })
+ put :update, {:id => tournament.to_param, :tournament => { "game" => "" }}, valid_session
+ end
+
+ it "assigns the requested tournament as @tournament" do
+ tournament = Tournament.create! valid_attributes
+ put :update, {:id => tournament.to_param, :tournament => valid_attributes}, valid_session
+ assigns(:tournament).should eq(tournament)
+ end
+
+ it "redirects to the tournament" do
+ tournament = Tournament.create! valid_attributes
+ put :update, {:id => tournament.to_param, :tournament => valid_attributes}, valid_session
+ response.should redirect_to(tournament)
+ end
+ end
+
+ describe "with invalid params" do
+ it "assigns the tournament as @tournament" do
+ tournament = Tournament.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Tournament.any_instance.stub(:save).and_return(false)
+ put :update, {:id => tournament.to_param, :tournament => { "game" => "invalid value" }}, valid_session
+ assigns(:tournament).should eq(tournament)
+ end
+
+ it "re-renders the 'edit' template" do
+ tournament = Tournament.create! valid_attributes
+ # Trigger the behavior that occurs when invalid params are submitted
+ Tournament.any_instance.stub(:save).and_return(false)
+ put :update, {:id => tournament.to_param, :tournament => { "game" => "invalid value" }}, valid_session
+ response.should render_template("edit")
+ end
+ end
+ end
+
+ describe "DELETE destroy" do
+ it "destroys the requested tournament" do
+ tournament = Tournament.create! valid_attributes
+ expect {
+ delete :destroy, {:id => tournament.to_param}, valid_session
+ }.to change(Tournament, :count).by(-1)
+ end
+
+ it "redirects to the tournaments list" do
+ tournament = Tournament.create! valid_attributes
+ delete :destroy, {:id => tournament.to_param}, valid_session
+ response.should redirect_to(tournaments_url)
+ end
+ end
+
+end
diff --git a/spec/controllers/users_controller_spec.rb b/spec/controllers/users_controller_spec.rb
new file mode 100644
index 0000000..142455c
--- /dev/null
+++ b/spec/controllers/users_controller_spec.rb
@@ -0,0 +1,5 @@
+require 'spec_helper'
+
+describe UsersController do
+
+end