Sha256: e9fc8cb6d4dd7da2ccb7ee9684c3d6eab2c12c761fa075eec241002e1a943ad6

Contents?: true

Size: 465 Bytes

Versions: 2

Compression:

Stored size: 465 Bytes

Contents

require 'test_helper'

module EtCms
  class Admin::UserControllerTest < 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
  
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
et_cms-0.0.2 test/functional/et_cms/admin/user_controller_test.rb
et_cms-0.0.1 test/functional/et_cms/admin/user_controller_test.rb