aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/bugs_controller_test.rb')
-rw-r--r--test/functional/bugs_controller_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/functional/bugs_controller_test.rb b/test/functional/bugs_controller_test.rb
new file mode 100644
index 0000000..4637e04
--- /dev/null
+++ b/test/functional/bugs_controller_test.rb
@@ -0,0 +1,24 @@
+require 'test_helper'
+
+class BugsControllerTest < ActionController::TestCase
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should get create" do
+ get :create
+ assert_response :success
+ end
+
+ test "should get destroy" do
+ get :destroy
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+end