diff options
author | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-03-29 16:48:54 +0100 |
---|---|---|
committer | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-03-29 16:49:22 +0100 |
commit | 32b1ab88cbd74bf2147731cc0c7e6c8db95fc540 (patch) | |
tree | 57900fd451368f2609f6314d166741d98a4de0f6 /test | |
parent | 90121413900895958a2ed8daaae2ab1e7dde996d (diff) |
added basic scaffold for pois
Diffstat (limited to 'test')
-rw-r--r-- | test/controllers/pois_controller_test.rb | 49 | ||||
-rw-r--r-- | test/fixtures/pois.yml | 11 | ||||
-rw-r--r-- | test/helpers/pois_helper_test.rb | 4 | ||||
-rw-r--r-- | test/models/poi_test.rb | 7 |
4 files changed, 71 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 diff --git a/test/fixtures/pois.yml b/test/fixtures/pois.yml new file mode 100644 index 0000000..5a20594 --- /dev/null +++ b/test/fixtures/pois.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + message: MyText + lat: 9.99 + lon: 9.99 + +two: + message: MyText + lat: 9.99 + lon: 9.99 diff --git a/test/helpers/pois_helper_test.rb b/test/helpers/pois_helper_test.rb new file mode 100644 index 0000000..f438f4a --- /dev/null +++ b/test/helpers/pois_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class PoisHelperTest < ActionView::TestCase +end diff --git a/test/models/poi_test.rb b/test/models/poi_test.rb new file mode 100644 index 0000000..a03fdf2 --- /dev/null +++ b/test/models/poi_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class PoiTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |