Sha256: e9e1e7b2b6ba47bef7515fee631b5551797cfad9e4aae6e1b1396e3683951d4d
Contents?: true
Size: 735 Bytes
Versions: 15
Compression:
Stored size: 735 Bytes
Contents
require 'test_helper' module MongoidForums class Admin::GroupsControllerTest < ActionController::TestCase test "should get index" do get :index assert_response :success end 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 edit" do get :edit assert_response :success end test "should get update" do get :update assert_response :success end test "should get show" do get :show assert_response :success end test "should get destroy" do get :destroy assert_response :success end end end
Version data entries
15 entries across 15 versions & 2 rubygems