summaryrefslogtreecommitdiff
path: root/test/controllers/pois_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/pois_controller_test.rb')
-rw-r--r--test/controllers/pois_controller_test.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/controllers/pois_controller_test.rb b/test/controllers/pois_controller_test.rb
new file mode 100644
index 0000000..8e08206
--- /dev/null
+++ b/test/controllers/pois_controller_test.rb
@@ -0,0 +1,49 @@
+require 'test_helper'
+
+class PoisControllerTest < ActionController::TestCase
+ setup do
+ @poi = pois(:one)
+ end
+
+ test "should get index" do
+ get :index
+ assert_response :success
+ assert_not_nil assigns(:pois)
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should create poi" do
+ assert_difference('Poi.count') do
+ post :create, poi: { lat: @poi.lat, lon: @poi.lon, message: @poi.message }
+ end
+
+ assert_redirected_to poi_path(assigns(:poi))
+ end
+
+ test "should show poi" do
+ get :show, id: @poi
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit, id: @poi
+ assert_response :success
+ end
+
+ test "should update poi" do
+ patch :update, id: @poi, poi: { lat: @poi.lat, lon: @poi.lon, message: @poi.message }
+ assert_redirected_to poi_path(assigns(:poi))
+ end
+
+ test "should destroy poi" do
+ assert_difference('Poi.count', -1) do
+ delete :destroy, id: @poi
+ end
+
+ assert_redirected_to pois_path
+ end
+end