mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
49 lines
996 B
Ruby
49 lines
996 B
Ruby
require 'test_helper'
|
|
|
|
class HabitsControllerTest < ActionController::TestCase
|
|
setup do
|
|
@habit = habits(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:habits)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create habit" do
|
|
assert_difference('Habit.count') do
|
|
post :create, habit: @habit.attributes
|
|
end
|
|
|
|
assert_redirected_to habit_path(assigns(:habit))
|
|
end
|
|
|
|
test "should show habit" do
|
|
get :show, id: @habit
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, id: @habit
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update habit" do
|
|
put :update, id: @habit, habit: @habit.attributes
|
|
assert_redirected_to habit_path(assigns(:habit))
|
|
end
|
|
|
|
test "should destroy habit" do
|
|
assert_difference('Habit.count', -1) do
|
|
delete :destroy, id: @habit
|
|
end
|
|
|
|
assert_redirected_to habits_path
|
|
end
|
|
end
|