summaryrefslogtreecommitdiff
path: root/spec/requests
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/alerts_spec.rb11
-rw-r--r--spec/requests/games_spec.rb11
-rw-r--r--spec/requests/matches_spec.rb11
-rw-r--r--spec/requests/pms_spec.rb11
-rw-r--r--spec/requests/servers_spec.rb11
-rw-r--r--spec/requests/teams_spec.rb11
-rw-r--r--spec/requests/tournaments_spec.rb11
7 files changed, 77 insertions, 0 deletions
diff --git a/spec/requests/alerts_spec.rb b/spec/requests/alerts_spec.rb
new file mode 100644
index 0000000..03c332a
--- /dev/null
+++ b/spec/requests/alerts_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Alerts" do
+ describe "GET /alerts" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get alerts_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/games_spec.rb b/spec/requests/games_spec.rb
new file mode 100644
index 0000000..1a84608
--- /dev/null
+++ b/spec/requests/games_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Games" do
+ describe "GET /games" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get games_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/matches_spec.rb b/spec/requests/matches_spec.rb
new file mode 100644
index 0000000..250f746
--- /dev/null
+++ b/spec/requests/matches_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Matches" do
+ describe "GET /matches" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get matches_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/pms_spec.rb b/spec/requests/pms_spec.rb
new file mode 100644
index 0000000..1862b87
--- /dev/null
+++ b/spec/requests/pms_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Pms" do
+ describe "GET /pms" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get pms_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/servers_spec.rb b/spec/requests/servers_spec.rb
new file mode 100644
index 0000000..2a1562e
--- /dev/null
+++ b/spec/requests/servers_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Servers" do
+ describe "GET /servers" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get servers_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/teams_spec.rb b/spec/requests/teams_spec.rb
new file mode 100644
index 0000000..f0caf7a
--- /dev/null
+++ b/spec/requests/teams_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Teams" do
+ describe "GET /teams" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get teams_path
+ response.status.should be(200)
+ end
+ end
+end
diff --git a/spec/requests/tournaments_spec.rb b/spec/requests/tournaments_spec.rb
new file mode 100644
index 0000000..09b4b55
--- /dev/null
+++ b/spec/requests/tournaments_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe "Tournaments" do
+ describe "GET /tournaments" do
+ it "works! (now write some real specs)" do
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
+ get tournaments_path
+ response.status.should be(200)
+ end
+ end
+end